Tagged Questions
The seq.unfold tag has no wiki summary.
12
votes
2answers
2k views
F#: Why is using a sequence so much slower than using a list in this example
Background:
I have a sequence of contiguous, time-stamped data.
The data-sequence has holes in it, some large, others just a single missing value.
Whenever the hole is just a single missing value, I ...
3
votes
3answers
1k views
Seq.unfold explanation in f#
I am trying to create a sequence lazily by using f#.
The sequence is defined as follows:
The nth term of the sequence of
triangle numbers is given by, tn =
½n(n+1); so the first ten triangle
...