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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 478 - 507 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
478
When the lookup of a variable in a closure fails, does it continue the lookup in another scope? If so which scope? The context in which it was created?(like a...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 7, 2003
10:30 pm
479
... It should (in the lisp lineage anyways) lookup using the environment it was closed around. yan ...
Ryan Daum
ryandaum
Offline Send Email
Apr 7, 2003
10:40 pm
480
... You look up in the chain of scopes that lexically enclosed the current one (i.e. textually enclosed it in the source code). Not the one in which it was...
James McCartney
james_e_mcca...
Offline Send Email
Apr 7, 2003
10:52 pm
481
... the ... was ... this depends. in lexically scoped systems it searches the environment in which it was created and in dynamically scoped systems it is where...
cr88192
Offline Send Email
Apr 8, 2003
12:40 am
482
Hi, I was wondering if tuple subtyping rules are useful or desirable. If we have a tuple (Integer, String, Integer), should it be a subtype of (Integer,...
daniel_yokomiso
Offline Send Email
Apr 9, 2003
3:29 pm
483
... desirable. ... subtype ... rules, ... rules ... (e.g. ... yes, maybe first rest is pretty hackish but that is what I have done: match? (x y . z) (1 2) =>...
cr88192
Offline Send Email
Apr 9, 2003
7:49 pm
484
... Do closures also have their own locals which are created for temporary use when they the closure is called? Or do they simply use the locals from where...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 9, 2003
8:15 pm
485
... In an SECD machine, when making a closure, you copy the parent's stack, it's full environment, "control", and it's "dump" (think of the last two as...
Ryan Daum
ryandaum
Offline Send Email
Apr 9, 2003
9:08 pm
486
... (let ((n 0)) (lambda () (set! n (+ n 1)) n))) ... 1 ... 2 ... 3 In gen, n is bound when it is created - known as static binding, but better understood as...
Edwin Zacharias
ehz4
Offline Send Email
Apr 9, 2003
10:50 pm
487
In regard to this passage: "Basically, if you make all objects' slot values write-once and have readers block on non-written slots, you get effectively...
Jack Waugh
jack_nospam
Offline Send Email
Apr 11, 2003
1:18 pm
488
... Or you can attach variables themselves to closures instead of frames - all variables from all levels which are actually used ("all levels" conceptually;...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Apr 13, 2003
8:07 am
489
... The question doesn't arise if introduction of a local variable is explicit, different from assignment / rebinding. Then it does just what is written: if...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Apr 13, 2003
8:15 am
490
See William Clinger's "Lambda, the ultimate label or a simple optimizing compiler for Scheme" in the electronic ACM archives. This is a simple optimizing...
Logan, Patrick D
patrickdlogan
Offline Send Email
Apr 14, 2003
4:19 pm
491
Any chance of a summary for those of us without ACM memberships? ... ____________________________________________________________________________ ____ ryan...
Ryan Daum
ryandaum
Offline Send Email
Apr 14, 2003
4:30 pm
492
... I will put the PDF on my website tonight and send the URL to this list. Don't tell anyone. 8^) -Patrick...
Logan, Patrick D
patrickdlogan
Offline Send Email
Apr 15, 2003
4:40 pm
493
... I put the PDF on my web site... http://patricklogan.blogspot.com/2003_04_13_patricklogan_archive.html#200154 335 -Patrick...
Logan, Patrick D
patrickdlogan
Offline Send Email
Apr 16, 2003
4:30 pm
494
... What is a closure? Can u give an example of a closure? Mo...
iad929
Offline Send Email
Apr 17, 2003
7:18 pm
495
... ; In the following example ADDER and SUBSTRACTER are ; simple closures closed over a shared binding denoted ; by the variable X. (define adder #f) ...
patrickdlogan
Offline Send Email
Apr 17, 2003
8:03 pm
496
Thought this was interesting: http://citeseer.nj.nec.com/andersson95sorting.html Cheers, Steve Io, a small language: http://www.iolanguage.com/...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 29, 2003
11:55 pm
497
... Here's an implementation in C: http://www.nada.kth.se/~snilsson/public/code/nloglogn.c Cheers, Steve Io, a small language: http://www.iolanguage.com/...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 30, 2003
12:46 am
498
A small but related bit... http://www.computer.org/tc/tc1991/t0263abs.htm Sorting in hardware would be nice :) Mike...
Mike
mike_ekim
Offline Send Email
Apr 30, 2003
6:40 am
499
http://ftp.archive.org/movies/lisarein/oreilly/etech2003/alankay/ tour.html#complete Cheers, Steve Io, a small language: http://www.iolanguage.com/...
Steve Dekorte
stevedekorte
Offline Send Email
May 3, 2003
3:19 am
500
... stupid server is not up enough for me to actually download it. I start trying yesterday, server goes down. this morning: I get about half, server goes down...
cr88192
Offline Send Email
May 4, 2003
3:39 pm
501
I just found a little hack that fakes coroutines if you can't fiddle with the stack (i.e. C++). It's based on switch() being able to jump anywhere within the...
Mike
mike_ekim
Offline Send Email
May 6, 2003
8:53 pm
502
I just found a little hack that fakes coroutines if you can't fiddle with the stack (i.e. C++). It's based on switch() being able to jump anywhere within the...
Mike
mike_ekim
Offline Send Email
May 6, 2003
9:01 pm
503
... This is an interesting technique though it appears to only work if all your coro yields are in the function containing the switch. Cheers, Steve Io, a...
Steve Dekorte
stevedekorte
Offline Send Email
May 6, 2003
9:06 pm
504
I couldnt' find the link on the page you gave. I came across an article (possibly the same one): http://radio.weblogs.com/0102385/2003/03/30.html#a318 Chris....
Chris Double
chris.double@...
Send Email
May 6, 2003
9:42 pm
505
... article ... That is the same topic, here is the actual link I wanted to post: http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html Mike...
Mike
mike_ekim
Offline Send Email
May 7, 2003
12:17 am
506
... fiddle ... jump ... all ... I don't quite get what you're saying. As long as you put your 'yeild' inside of the switch, you're ok. You can have multiple ...
Mike
mike_ekim
Offline Send Email
May 7, 2003
12:22 am
507
... In other words, this scheme fails if a function called by the function is the one that wants to yield. - you can't yield up multiple levels as you can with...
James McCartney
james_e_mcca...
Offline Send Email
May 7, 2003
1:47 am
Messages 478 - 507 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