Do you mean yieldingCoros returns a list? Exception: Scheduler does not respond to 'yieldingCoroutines' ... Scheduler yieldingCoroutines actor.io 7 I...
The Socket addon does not build. source/IoEvent.h:17:19: error: event.h: No such file or directory This is fixed by loading the asynchronous event notification...
Dear Io lovers, I just wonder what's the status of the gtk+ or gnome bindings for Io. AFAIKT the version on http://rtfm.insomnia.org/~qg/iogtk/ is based on...
Haven't posted for a year(s?), just curious about people's opinion on boolean operations and how most languages have overloaded them. Should "nothing or ...
On trying to compile Io, running "make test" gave me this: ./_build/binaries/io_static ../libs/iovm/tests/correctness/run.io || true ...
str1442
lancerstr@...
Nov 15, 2008 2:09 pm
11019
On trying to compile Io, running "make test" gave me this: ./_build/binaries/io_static ../libs/iovm/tests/correctness/run.io || true ...
str1442
lancerstr@...
Nov 15, 2008 2:47 pm
11020
Got this Error on iolanguage.com by trying to open the "Issues" Link: Exception: compile error: expected a message but instead found a open group character ...
str1442
lancerstr@...
Nov 16, 2008 8:16 pm
11021
... Hey Mike, I've changed the boolean comparison operations to all return a boolean. - Steve...
... Hey how's it going Steve? I meant this to be more of a debate, but I guess irc is where to go now. For example, this logic can be useful: x = value or 1 ...
... Let me ask again, does anyone know about work in this area? Regards Friedrich -- Q-Software Solutions GmbH; Sitz: Bruchsal; Registergericht: Mannheim ...
... On a different, but related topic: a := list(1, 2, 3) a at(50) => nil, no exception a atPut(50, 1) => exception: index out of bounds Any reason why at()...
... Because atPut() tends to assume the location exists while at() is often most conveniently used for both access and existence testing. I suppose we could...
I don't think this needs to be added to Io. You can always just: l := list(0,1,2); value := l at(3) ifNil(Exception raise("boom")) or if your list contains...
... I didn't say it had to be added to Io. I said to exploit the dynamic nature of Io (meaning, add it yourself as needed). :) ... which is why I suggested...
It's been a long long while for me, but can't a list hold Nil values? Perhaps the point is to distinguish it from an invalid key? How does at, atPut, etc....
I don''t think the unusual case of accessing a list that possibly contains nil values with the possibility of using an out of bounds index warrants additional...
... Maybe the issue is that "at" is used in places where "contains" is more appropriate: if (list contains(MODE_X), obj useModeX ) And if you want "the index...
... Ahh, interesting. One thing I find odd is: "Note, there is no guarantee as to the order in which keys will be stored in a table when using dictionaries so...
... stored in a ... using pairs() ... of the ... and has only ... There are extensions to lua (I think metalua is one, IIRC) that change this so that you can...
Hi Friedrich, ... as far as I know, no further work was done on the gtk+ binding after it was created. So it probably is not up to date anymore. ~ MK...
Hi all, I've been tracking io for a short while now and very recently, I've noticed that I'm unable to build the socket addon. I've followed the instructions...
Hi Steve, Thanks for the pointer. I had libevent 1.3.0 installed and once I updated to libevent 1.4.8 , I was able to move along smoothly. If I could be...