fantasy-seqs

Homogenous array sequence data structure.

Usage no npm install needed!

<script type="module">
  import fantasySeqs from 'https://cdn.skypack.dev/fantasy-seqs';
</script>

README

Fantasy Seq

This library implements purely functional, monadic homogenous list data structure.

var a = Seq.from(0, 12);
a.take(0, 10); // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

Fantasy Land Compatible