Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8952 - 8981 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8952
... To an overview over which operators are defined by which prototypes, I wrote this little script: operMap := Map clone IoVM slotNames foreach(isn, ...
Jon Kleiser
jon_kleiser
Offline Send Email
May 1, 2006
9:58 am
8953
Using Io 20060429 on OSX, I wanted to check if it was possible to continue an expression on the next line by using "\" at the end of the current line. This is...
Jon Kleiser
jon_kleiser
Offline Send Email
May 1, 2006
1:19 pm
8954
... Note that it's trying to find a slot named +\ because of the lack of a space (when you use two non-alphanumeric characters next to one another, Io thinks...
Jeremy Tregunna
jtregunna_io
Offline Send Email
May 1, 2006
2:34 pm
8955
... Nearly everyone here is a refugee from the world of statically typed languages. No one here has any desire to make Io into a mutant-hybrid static-dynamic....
David Fayram
d_fayram
Offline Send Email
May 1, 2006
3:31 pm
8956
... So you should use a special type of method constructor which allows this behaviour; nobody has been against that, it's changing the default behaviour that...
Jeremy Tregunna
jtregunna_io
Offline Send Email
May 1, 2006
4:05 pm
8957
Hey everyone, I am suffering. I am suffering because I cannot run Io on my machine. It's a Macbook Pro, and generally very nice, but Io hasn't been ported to...
David Fayram
d_fayram
Offline Send Email
May 1, 2006
4:10 pm
8958
... Apart from this plea, you may be able to get assistance from those who know the platform in #opendarwin on freenode. That is, they may be able to help you...
Jeremy Tregunna
jtregunna_io
Offline Send Email
May 1, 2006
4:20 pm
8959
... Err, call varargs would be different. It'd be subset of call arguments that was matched to the * pattern. Call arguments would contain that portion as a...
David Fayram
d_fayram
Offline Send Email
May 1, 2006
7:56 pm
8960
... Again I'm being misunderstood. I am Fully aware of the case you describe, you need not repeat yourself for christ sakes, this is ridiculous. I was merely...
Jeremy Tregunna
jtregunna_io
Offline Send Email
May 1, 2006
8:54 pm
8961
... <SNIP> ... Hey! What's wrong with Python?! ;D -=GB=- P.S. I really do love Python though....
Galen Beals
n_grava
Offline Send Email
May 2, 2006
8:53 am
8962
... More than you love Io?! Jonathan....
Quag
quagath
Offline Send Email
May 2, 2006
10:18 am
8963
... Is the idea even mathematically possible???!...
David Fayram
d_fayram
Offline Send Email
May 2, 2006
3:42 pm
8964
... What does it mean when people 'love' a programming language? Jonathan....
Quag
quagath
Offline Send Email
May 2, 2006
9:15 pm
8965
... It means the pages of my _Programming Python_ are stuck together. Zac...
Zachery Bir
zacherybir
Offline Send Email
May 2, 2006
9:18 pm
8966
... Thanks for the bug report. I've pushed a fix. Cheers, -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
May 2, 2006
10:45 pm
8967
... It's still under construction. It will be different from a Smalltalk/LISP image though. Object records will be randomly accessible and Map values will be...
Steve Dekorte
stevedekorte
Offline Send Email
May 2, 2006
10:46 pm
8968
(If I've missed this entry in the manual, please forgive my ignorance). Is it possible to unset a slot on an object in Io? The motivation for this question...
Rich
seagrave1918
Offline Send Email
May 3, 2006
2:44 pm
8969
Hi Rich, ... removeSlot("theSlot") If you want to distinguish between if a slot is on the local scope vs the object you can use self hasSlot("slotName") # on...
Quag
quagath
Offline Send Email
May 3, 2006
8:14 pm
8970
... a := Object clone a foo := 1 a removeSlot("foo") -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
May 4, 2006
1:14 am
8971
Just posting this as an update. ... It does now, as of an hour ago. The support is in the darcs repository, and should appear in the next release. ... The...
Jeremy Tregunna
jtregunna_io
Offline Send Email
May 4, 2006
11:20 pm
8972
Earlier tonight we incorporated a UTF8 patch for the lexer. All works fine if you use standard ASCII or UTF8 character encoding (or even extended ASCII...
Jeremy Tregunna
jtregunna_io
Offline Send Email
May 5, 2006
2:26 am
8973
For those who still want to try ' as syntactic sugar for getSlot, here is a very simple piece of code: Object ' := method(self getSlot(call message arguments...
SainTiss
saintiss@...
Send Email
May 5, 2006
10:04 am
8974
I was surprised that this method ... method(getSlot("Number")) ... returns nil, while this method ... method(IoVM getSlot("Number")) ... returns 0. In the...
Jon Kleiser
jon_kleiser
Offline Send Email
May 8, 2006
8:10 am
8975
Hi Jon, I don't know if this is explicitly in the docs, but it is correct behaviour: Any message in a method is by default sent to a Locals clone. Since Locals...
SainTiss
saintiss@...
Send Email
May 8, 2006
8:21 am
8976
Hi Hans, OK, but what then is the difference between method(getSlot("Number")) and method(Number) ...? The latter returns 0. /Jon...
Jon Kleiser
jon_kleiser
Offline Send Email
May 8, 2006
10:34 am
8977
Hi Jon, ... You've got me beat. I can't explain it. Do you know of any other slots on Object which suffer from the same problem? Jonathan....
Quag
quagath
Offline Send Email
May 8, 2006
10:59 am
8978
Hi Jon, Well, by default a message is sent to Locals, but if Locals does not respond to it (as with "Number"), it is sent to self instead. So the difference is...
SainTiss
saintiss@...
Send Email
May 8, 2006
10:59 am
8979
I'm writing a script that generates readable html docs from available data in the Io system. To access the available slot docs, I do things similar to this: ...
Jon Kleiser
jon_kleiser
Offline Send Email
May 9, 2006
1:58 pm
8980
Hello,. I'm curious about message trees: Why are they built with `next` and `attached` slots on Message instead of using Lists of Message objects ? Regards, ...
Alwin Blok
alwinblok
Offline Send Email
May 9, 2006
2:16 pm
8981
... First you have to "make docs" then run "make" to build a clean, new vm; that will include the doc stuff in the C source files. After you're done, you can...
Jeremy Tregunna
jtregunna_io
Offline Send Email
May 9, 2006
5:44 pm
Messages 8952 - 8981 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help