... I was just wondering if I missed something or if that was a correct intpretation. Just one extra question is there something one could call to get a stack...
... Ok, I do not know how to get access to the parameter in the memory allocation functions. I modified the allocation functions and well do at least a bit to...
Hi, I'm just starting with Io (coming from Python) and I'm trying to understand the difference in semantics between := and =. I understand (I believe) that :=...
Hi, I'm new in Io programming, want to use Io with OpenGL, but samples crash with segfault (it is interesting that every time in different places), sometimes...
Hi, I am trying to loop over a string(Sequence) using for each: "abc" foreach(c, c println) which results in: 97 98 99 How do I convert these back into...
Milos Negovanovic
milos.negovanovic@...
Sep 19, 2008 9:07 pm
10932
... Try this: "abc" foreach(c, c asCharacter println) Try "Number slotNames" for a list of things that numbers respond to. Best, James...
what are the answers? I knew this at one point but I forget now....
Nick Guenther
kousue@...
Sep 22, 2008 12:56 am
10939
... 1) = will fail on an undefined slot, but more interestingly 2) := will set a slot in the local context of a method, = will set it in the encapsulating...
... There are 4 primary cases for slot assignment I can think of right now: * Object setSlot * Object setSlotWithType * Object updateSlot * Locals updateSlot ...
Brian Mitchell
binary42@...
Sep 22, 2008 4:25 am
10942
Io> "/foo/bar/baz/" split ("/") ==> list("", "foo", "bar", "baz") Is there a reason there's an empty value at the beginning of the resulting list but not at...
... That certainly appears to be the case... the question remains whether or not that's the correct (or least surprising) behavior. To me, "split" implies...
http://lambda-the-ultimate.org/node/2596#comment-39101 Any responses/corrections to (or handwaving dismissal of) the concerns in this particular comment?...
... On point 2, the avoidance of blocks is done for many reasons including the quirks in activation and their inefficient execution. The fact that they close...
Brian Mitchell
binary42@...
Sep 23, 2008 1:47 am
10947
... There is also a Sequence splitNoEmpties() method....
... My concern has more to do with the semantics of the method rather than solving a particular issue. ... ['', 'foo', 'bar', 'baz', ''] I think Python gets it...
... Just as a counter example, Ruby in similar to Io in that: "/foo/bar/baz/".split("/") #=> ["", "foo", "bar", "baz"] Now my opinion is to go with something...
Brian Mitchell
binary42@...
Sep 24, 2008 6:42 pm
10950
Given that the "split" semantics issue has come up so many times and has different semantics in different languages, would it make sense to choose a new, more...
The pathes can not be used and files can not be found e.g thre is no IoBuffer.c anywhere around. I suggest dropping this projects.... Regards Friedrich...