30 patches in the last week. Contributors: Dag Odenhall Daniel Rosengren Detlef Reichelt Jon Kleiser Jonathan Wright Steve Dekorte (From git logs, so may be...
How do I have to declare a function which takes method as parameter? Similiear to the sortBy method (which however seems to be written in C?) So I have foo :=...
Friedrich Dominicus
frido@...
Jun 15, 2007 12:11 pm
9980
Well, methods activate and blocks don't (unless you intervene and make them). So, if you want to pass a method, something like this would be required: foo :=...
Well, methods activate and blocks don't (unless you intervene and make them). So, if you want to pass a method, something like this would be required: foo :=...
Friedrich
frido@...
Jun 15, 2007 1:22 pm
9982
Change your definition of cmpFunc from: cmpFunc := method(a, b, a < b) to: cmpFunc := block(a, b, a < b) -- Jeremy Tregunna jtregunna@......
Change your definition of cmpFunc from: cmpFunc := method(a, b, a < b) to: cmpFunc := block(a, b, a < b) -- [/quote] sorry, but cmpFun is commented out, the...
Friedrich
frido@...
Jun 15, 2007 3:55 pm
9984
... Not that is not the problem, because cmpFun is commented out, but I forget the comma after cmdBlock and so it's not seen as parameter. So the code should...
Friedrich
frido@...
Jun 15, 2007 3:59 pm
9985
Hello, I maintain Protonio umbrella project (http://trac.verbdev.com/ protonio) which includes small Protoext subproject, which adds sort of language extension...
Yurii Rashkovskii
yrashk@...
Jun 15, 2007 11:10 pm
9986
Hi Yurii, ... Dict := Map ... Object squareBrackets := getSlot("list") ... List squareBrackets := List getSlot("at") ... A Symbol is an immutable Sequence. Can...
... Well, not true. Dict is a kind of an "improved" Map, it accepts non-Sequence keys, and a bit of simple syntax sugar, yes. ... Anyway, wouldn't it be nice...
... Can you give an example of when you'd use non-sequence keys? I can see numbers, but there's always asString in that case. Given that most objects aside...
Hi Guys, You've inspired me to write up a little article on this topic: http://www.quag.geek.nz/io/getting-started/executable-args Thanks, Jonathan....
Hi everybody, I noticed that async calls performed by separate actors are executed in the opposite order of their calls: Io> Object clone @@writeln("A") Io>...
... Note I was making an analogy -- that is, coroutines are cooperative, yes, but you _think_ of them as being self-standing threads in their own right. How...
... I disagree. Being deterministic is one of the most compelling reasons to use them in the first place and there is no technical reason I can think of why it...
... Actually, I think of them as a very simple method of control flow. The rule not to mess with the relative ordering is something we all expect in the usual...
... Seems to be quite nice, though a bit Object-centered. Though, anyway, not that hard to make it super nice :) ... Ok, how do you think, should there be any...
Man, it's been years since I tried to do anything with Io. But the time has come for me to play around with it some more, as I have some ideas I want to...