Re: RFC 225 (v1) Data: Superpositions
[email protected] (Christian Soeller) Fri, 15 Sep 2000 11:07:59 +1200
| Newsgroups | perl.perl6.language.data |
|---|---|
| Organization | University of Auckland |
| Message-ID | <[email protected]> |
Jeremy Howard wrote: > Do any() and all() have some magic around how they are implemented in von > Neumann computers that make them faster than standard CS searching > techniques? I'm probably naive here but shortcuts in a non-parallelized (classical) implementation rely on the usual shortcircuiting: the first true allows any to return, the first false can terminate all. How can you do better? Christian