Simple iterator abstract datatype, intended to iterate efficiently on collections while performing some transformations.
Find a file
2013-02-04 23:29:18 +01:00
opam add files for opam 2013-01-29 15:45:29 +01:00
.gitignore generate documentation 2013-01-28 01:08:15 +01:00
LICENSE Add README and license 2013-01-27 23:45:30 +01:00
Makefile Makefile target to install the library 2013-01-29 15:02:56 +01:00
META Makefile target to install the library 2013-01-29 15:02:56 +01:00
README.md update makefile 2013-01-28 00:21:46 +01:00
sequence.ml read sequence of chars from a channel 2013-02-04 23:29:18 +01:00
sequence.mli read sequence of chars from a channel 2013-02-04 23:29:18 +01:00
sequence.odocl generate documentation 2013-01-28 01:08:15 +01:00
tests.ml test of fast iteration over integers 2013-02-04 20:41:58 +01:00

Sequence

Simple sequence abstract datatype, intented to transfer a finite number of elements from one data structure to another.

Build

You need OCaml, say OCaml 3.12 or OCaml 4.0.

$ make

To see how to use it, check tests.ml. sequence.ml has a few examples of how to convert data structures into sequences, and conversely.

License

Sequence is available under the BSD license.