containers
A modular, clean and powerful extension of the OCaml standard library
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
package containers
-
containers
-
containers.bencode
-
containers.cbor
-
containers.codegen
-
containers.monomorphic
-
containers.top
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Library containers
l >|= f
is the infix version of map
with reversed arguments.
l1 @ l2
concatenates two lists l1
and l2
. As append
.
funs <*> l
is product (fun f x -> f x) funs l
.
val (--) : int -> int -> int CCList.t
i -- j
is the infix alias for range
. Bounds included.
val (--^) : int -> int -> int CCList.t
i --^ j
is the infix alias for range'
. Second bound j
excluded.
- since 0.17