Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
1k views

Python lazy list

I would like create my own collection that has all the attributes of python list and also knows how to saved/loaded itself database. Also I want to make the load implicit and lazy, as in it shouldn't ...
8
votes
8answers
615 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 ...
2
votes
2answers
684 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
3answers
956 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, ...
1
vote
2answers
387 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 = ...