fantasy-seqs
Version:
Homogenous array sequence data structure.
16 lines (11 loc) • 341 B
Markdown
# Fantasy Seq
This library implements purely functional, monadic homogenous array
data structure.
```javavscript
var a = Seq.from(0, 12);
a.take(0, 10); // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
```
## Fantasy Land Compatible
[

](https://github.com/fantasyland/fantasy-land)