You are seeing Ask web results for lazy lists because there was not a match on Dictionary.com.
Lazy evaluation - Wikipedia, the free encyclopedia
In computer programming, lazy evaluation is the technique of delaying a computation until the result is required. The benefits of lazy evaluation include: performance increases due to avoiding unnec...
en.wikipedia.org/wiki/Lazy_evaluation
Title: Lazy Lists ... An alternative change to Tcl_ListObjIndex() (in order to make it "compatible" with the semantics of lazy lists) is to disallow successive calls against the same list if a previous call returned an object that the caller plans to reference the object.
tip.tcl.tk/192
First of all, an important thing to understand is that lazy-lists are generally used to model some situation where there is a flow of data from point A to point B. As a result, there are a handful of standard operations that you might like to be able to apply to the contents of any given lazy-list.
www.mactech.com/articles/mactech/Vol.05/05.10/LazyLists... www.mactech.com/articles/mactech/Vol.05/05.10/LazyLists/index.html
If you aren't redirected, click here.
lazylist.rubyforge.org/ lazylist.rubyforge.org/
# # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # # 0. You just DO WHAT THE FUCK YOU WANT TO. ... nil elsif obj.kind_of?(Lazy) force obj.value else obj end end end class Lazy MEMOIZE = false class << self def is_memoized?
raganwald.com/source/lazy_lists.html raganwald.com/source/lazy_lists.html
OCaml implementation of lazy lists with syntax extension for list generators, list comprehension, pattern matching. ... lazy lists includes support for parallel lists comprehension; Vadim Shender - 2008-08-11 23:06...
forge.ocamlcore.org/projects/llists/ forge.ocamlcore.org/projects/llists/
Contents:; Self-reproducing and reproducing programs; Streams or infinite lists or lazy lists; Conventional lazy lists in Joy; Reproducing programs as lazy lists in Joy; Other reproducing programs; Concluding remarks...
www.latrobe.edu.au/philosophy/phimvt/joy/jp-reprod.html
QAIX > Perl web-programming > Infinite lists (was Re: RFC 24 (v1) Semi-finite (lazy) lists) 11 August 2000 01:34:50 ... Rather than continue to argue the details, why don't people post some> examples of code where they feel these lazy lists might be useful, and> let's see if there aren't already good alternatives.
qaix.com/perl-web-programming/166-745-infinite-lists-wa... qaix.com/perl-web-programming/166-745-infinite-lists-was-re-rfc-24-v1-semi-finite-lazy-lists-read.shtml
One of the most interesting aspects of the Haskell language is the fact that features lazy evaluation. My interest in lazy evaluation led me to a post on Wes Dyers blog about lazy lists in C#. In his blog post he talks describes how to create a lazy list ... Lazy List Functions...
blogs.msdn.com/matt/archive/2008/03/14/digging-deeper-i... blogs.msdn.com/matt/archive/2008/03/14/digging-deeper-into-lazy-and-functional-c.aspx
In Haskell using list comprehension jointly with lazy nature of lists allows to easily handle infinite lists, but OCaml doesn't provide such functionality. ... But the lack of syntactic sugar for lazy lists makes working with them somewhat tedious.
y-node.com/blog/2008/aug/04/ocamllazylists/ y-node.com/blog/2008/aug/04/ocamllazylists/