package fmlib_std
Standard datatypes of Fmlib
Install
dune-project
Dependency
Authors
Maintainers
Sources
0.5.1.tar.gz
sha256=750a521f995af23125970efd6a41a68cf8f047170737b3cdf01ac14c1154eb98
md5=8df2178d62764ebcb213913d453b641d
doc/index.html
Standard Types
Fmlib_std is a library of standard types. It has a lot of thin wrappers around modules of ocaml's standard library like Fmlib_std.Array, Fmlib_std.List etc. with some additional functionality and it contains some types which are not part of ocaml's standard library like e.g. Fmlib_std.Deque, Fmlib_std.Btree.
Usage
Install the library via
opam install fmlib_std
In order to compile program named foo with the help of dune write a dune file like
(executable
(name foo)
(libraries fmlib_std ...)
...
)