package fmlib_std
Standard datatypes of Fmlib
Install
Dune Dependency
Authors
Maintainers
Sources
0.5.9.tar.gz
sha256=9efb96fe5c1cfb4edc2ff5c6df4537ce9ded12175a60021e9d482e51eb69ebfb
md5=3fb18b650cfcb0bf3bd05e120e17b28f
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 ...) ... )