The online manual (guide.html) says To reverse the order of the loop, add a negative step: for(a, 0, 10, -1, a println) I think "for(a, 10, 0, -1, a println)"...
I wanted to check out how fast "Range clone setRange(...) asList" was compared to the more traditional solution ... Io> Date cpuSecondsToRun(1000 repeat(Range...
... Note that you're calculating the numbers from 100 to 1 twice in the former version, and it involves a lot of extra message sends, as opposed to only once...
Oh, let me correct the code snippit: Io> Date cpuSecondsToRun(l := list; for(i, 0, Number constants inf, if (i > 500, break); l append(i))) ==> 0.01 Io> Date...
... When I try that on my G4 (also on 10.4.9), I get even more determined! Io> Date cpuSecondsToRun(l := list; for(i, 0, Number constants inf, if(i > 500,...
... Well, that of course solved the problem completely. D'ough! The reason I posted this was to construct a minimal example for memory allocation bugs that I...
... On the C side, you can use the COLLECTOR_FOREACH macro: COLLECTOR_FOREACH(state->collector, v, printf("%p %s\n", (void *)v, IoObject_name(v)); );...
[from moderator - sorry for the delay in posting this - yahoo had marked it as spam for some reason] Samuel A. Falvo II wrote: [...] ... <offtopic> *rummage...
... MCPL can be found here: http://www.cl.cam.ac.uk/~mr10/MCPL.html Note that you can back-track to here: http://www.cl.cam.ac.uk/~mr10/index.html which is the...
... Thanks! By the way, I noticed a rather strange behavior in IOCLONE (IoObject.c): After performing the cloning using the object's specific clone method, it...
Hi, I added Io to my mercurial mirrors, see http://mercurial.creo.hu/repos/ http://mercurial.creo.hu/repos/io-hg Feel free to advertise it on the website. ...
Hi everybody. I'm new to Io and reading through the source. None of the functions (in the C source) seem to be documented. Now I've heard that it might be...
Bram Neijt
bneijt@...
Apr 5, 2007 3:49 pm
9906
The Io-2007-04-07.tar.gz (both "us east" and "us west") is only 20 bytes. /Jon...
I'm totally disappointed. I've been impressed by the texts, the images. I've downloaded the win32 binairies. I can't run a single sample. I keep getting...
I've tried a lot. Specially those from the Flux and OpenGL directory. The error message as I've said above is : Exception: Object does not respond to "Flux" or...
Actually, I'm having similar problems when I'm trying to play with the ObjC integration, though it may be unrelated as I seem to be getting a bit further. Io...
Yes they are. I got them from the website: http://homepage.mac.com/jamesrburgess/Stuff/. But it doesn't matter now. It seems that there is no real support for...
... Objc syntax has been broken from some time. However I have a patch to fix it and improve border cases support :-) I have another useful patch to avoid...
What are asUTF8, asUTF16, asUTF32 methods in Sequence object? I have tried send messages that, but it seems be no any effect... Io> "abc" asUTF8 ==> abc Io>...
... Io> s := "abc" ==> abc Io> s encoding ==> ascii Io> s itemSize ==> 1 Io> s = s asUTF16 ==> abc Io> s encoding ==> utf16 Io> s itemSize ==> 2 Btw, I think...
... In my opinion, providing UnicodeSequence object(and encode/decode method) like Python is better then asUCS2/4 method... Io> s := "abc" ==> abc Io> u := s...
... Hash: SHA1 ... Are those examples are just ASCII so asXXX method makes no differences, right? I think you'd better test with multibyte characters like...
Sungjin Chun
chunsj@...
Apr 19, 2007 7:08 am
9920
I find this very useful: http://blogamundo.net/dev/2005/11/09/if-you-are-writing-an-application-that-deals-with-multilingual-content/...
Hi Quentin, This has been really helpful, thank you! I've been playing with your ObjcBridge.io and I think I've a fairly good understanding of how the syntax...
About soundtouch : on MacOSX 10.4, stdc++ is installed but is named "libstdc++-static.a". That's why the build process can't find it. Just do : "sudo ln -s...