1
vote
3answers
65 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 …
1
vote
2answers
172 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 …
0
votes
2answers
70 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 l …
6
votes
7answers
343 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 ev …
