Search the web
Sign In
New User? Sign Up
langsmiths · Language Smiths
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 2178 - 2207 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2178
... Whenever you say the word expression, it is converted to _expression. I dont' know if this is your fault or your mail client's fault or yahoo groups's...
Daniel Ehrenberg
littledanehren
Offline Send Email
Oct 3, 2004
4:53 pm
2179
... I am not sure, this is the first I have heard of it... ... hmm, ok... ... again, probably my bad. the 'dynamic' was added to distinguish it from more...
cr88192
Offline Send Email
Oct 4, 2004
5:50 am
2180
Hey all. Been working on my runtime for Inertia again and have been thinking about generators and coroutines. I'm having deja vu on this subject, so I know I...
Mike Austin
mike_ekim
Offline Send Email
Oct 16, 2004
7:20 pm
2181
... this ... language. ... dunno. ... returns ... it ... style, ... every ... well, generators are imo a dubious feature (they could be useful, they might not...
cr88192
Offline Send Email
Oct 17, 2004
4:14 am
2182
... What do you mean by the "method is a continuation"? ... Ruby is certainly not out as it has first class continuations like Scheme. Take a look at Ruby's...
Steven Shaw
steshaw
Offline Send Email
Oct 17, 2004
4:36 am
2183
... I am biased in this regard this I am an avid Icon fan. However I really like Icon's uniform treatment of generator, allowing shortcut and/or evaluation to...
rapl_lang
Offline Send Email
Oct 21, 2004
9:56 am
2184
... not a continuation, actually co-routine. ... that is a co-routine, which is synonymous with generator. You probably think of them as different because Icon...
James McCartney
james_e_mcca...
Offline Send Email
Oct 21, 2004
7:18 pm
2185
Kokogut is a compiler of the Kogut language written in itself. http://kokogut.sourceforge.net/ New in Kokogut-0.5.0 (24 October 2004), a release with threads: ...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Oct 24, 2004
1:24 pm
2186
... Okay. I've never had too much experience with continuations really. But can't you use co-routines as continuations anyway? I may be completely wrong here,...
rapl_lang
Offline Send Email
Oct 26, 2004
11:33 am
2187
... Sort of. You can make co-routines from one-shot continuations, but I'm not sure you can do everything with co-routines that you can do with one shot...
James McCartney
james_e_mcca...
Offline Send Email
Oct 27, 2004
9:19 pm
2188
... Can you do easier web programming with that, like Flowscript (see http://cocoon.apache.org/2.1/userdocs/flow/index.html) does? Can you have different...
Daniel Ehrenberg
littledanehren
Offline Send Email
Oct 28, 2004
7:22 pm
2189
... yes but they are a bit more than that. adverbs are polymorphic on the functions they modify. There is an adverb for the inverse of a function for example. ...
James McCartney
james_e_mcca...
Offline Send Email
Oct 28, 2004
11:06 pm
2190
... What are you talking about? What do you mean, polymorphic? Is it specialized on specific functions? You can write a higher-order function to get the ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Oct 30, 2004
12:41 am
2191
... for something even as simple as addition, you would want parallel evaluation when dealing with things such as adding audio signals, but across evaluation...
James McCartney
james_e_mcca...
Offline Send Email
Oct 30, 2004
1:48 am
2192
... the ... function ... the ... can ... two ... Just curious here, but if a, b and c are streams, how does a + b followed by a + c evaluate (probably in the...
rapl_lang
Offline Send Email
Nov 1, 2004
12:19 pm
2193
... Well in my language you don't usually add streams, you add "patterns". Patterns are factories for streams, so it ends up being purely functional and you...
James McCartney
james_e_mcca...
Offline Send Email
Nov 1, 2004
5:00 pm
2194
... Earlier you talked about passing generator type things as arguments to functions, do you mean passing streams or patterns? ... Surely c.next is a...
rapl_lang
Offline Send Email
Nov 3, 2004
1:18 pm
2195
... ideally either one. With patterns the operations would functionally compose. ... Yes c.next is imperative. But asStream is always the last step, after you...
James McCartney
james_e_mcca...
Offline Send Email
Nov 3, 2004
5:36 pm
2196
... Backtracking in Icon is different to producing another value from a coexpression: A := create 1 to 4 B := create 1 to 3 while write(@A + @B) will write 2,...
rapl_lang
Offline Send Email
Nov 3, 2004
7:13 pm
2197
... {} is the syntax for a function - lexical closure. 'r' is a method on the function object that returns an instance of Routine, which is a co-routine. more...
James McCartney
james_e_mcca...
Offline Send Email
Nov 3, 2004
10:32 pm
2198
... OK so this is a crucial distinction that I missed. So you are saying that every op(@create A, @create B) is different than: every op(A, B) hmm. I'll have...
James McCartney
james_e_mcca...
Offline Send Email
Nov 3, 2004
11:53 pm
2199
... This is not at all how monads or arrows work. No monad conceptually is imperative; it's all purely functional. Most monads don't seem like they're ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Nov 5, 2004
2:08 am
2200
... what if the stream is a coroutine and next means resuming that coroutine? ... The problem with this is it is very inefficient. Patterns allow me to compose...
James McCartney
james_e_mcca...
Offline Send Email
Nov 5, 2004
8:08 am
2201
... So the following two examples have different behaviour in Icon : procedure main(args) every write( ((1 to 3) | (10 to 30 by 10)) ) end 1 2 3 10 20 30 ...
James McCartney
james_e_mcca...
Offline Send Email
Nov 5, 2004
8:08 am
2202
... It's true in most (all?) useful languages in some form. Take some Ruby code (which I don't know how to translate into SC, but it shouldn't be that hard): ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Nov 5, 2004
12:30 pm
2203
... Does this have to modify the original coroutine? Why are you making it a coroutine anyway and not just a lazylist? ... I find this hard to belive. SC is...
Daniel Ehrenberg
littledanehren
Offline Send Email
Nov 5, 2004
12:35 pm
2204
... contrived ... OK this doesn't work: procedure or(a, b) return (a | b) end procedure main(args) every write( or{(1 to 3), (10 to 30 by 10)} ) end Run-time...
James McCartney
james_e_mcca...
Offline Send Email
Nov 5, 2004
5:00 pm
2205
... I don't have call/cc. ... what would be at the head of the lazy list? a coroutine. I know of no other way of suspending a computation. ... I'm not sure...
James McCartney
james_e_mcca...
Offline Send Email
Nov 5, 2004
5:17 pm
2206
... "Conceptually" or not, some point Haskell has to mutate the state of an I/O device, or it will get nothing done. So Haskell does use monads to hide...
James McCartney
james_e_mcca...
Offline Send Email
Nov 5, 2004
6:04 pm
2207
... What does that have to do with it? ... Lazy lists are usually constructed with recursion, or other functions where the computation boils down to recursion....
Daniel Ehrenberg
littledanehren
Offline Send Email
Nov 5, 2004
11:33 pm
Messages 2178 - 2207 of 2746   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