The lazy-lists tag has no wiki summary.
3
votes
2answers
206 views
what does Cons do in this function?
I'm confused as to what the Cons() function does, in the function definition for from.
1
vote
3answers
3k views
Ocaml Syntax Error
I'm using an implementation of lazy lists where the type can be either Nil or Cons (value, thunk), where thunk is a function from unit to the rest of the list.
I'm trying to write a function cross, ...
2
votes
2answers
880 views
F-Sharp (F#) untyped infinity
I wonder why F-Sharp doesn't support infinity.
This would work in Ruby (but not in f#):
let numbers n = [1 .. 1/0] |> Seq.take(n)
-> System.DivideByZeroException: Attempted to divide by zero.
...
1
vote
2answers
568 views
What OCaml libraries are there for lazy list handling?
What OCaml libraries are out there that provide lazy list handling? I am looking for something along these lines:
type 'a lazy_list = (*'*)
| Nil
| Cons of 'a * 'a lazy_list lazy_t
let from f =
...
12
votes
4answers
2k views
Python lazy list
I would like create my own collection that has all the attributes of python list and also knows how to save/load itself into/from a database. Also I want to make the load implicit and lazy, as in it ...
10
votes
8answers
745 views
Is there a Perl solution for lazy lists this side of Perl 6?
Has anybody found a good solution for lazily-evaluated lists in Perl? I've tried a number of ways to turn something like
for my $item ( map { ... } @list ) {
}
into a lazy evaluation--by tie-ing ...