mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 19:25:28 -05:00
doc
This commit is contained in:
parent
ef92ef19fd
commit
e22c29c27f
4 changed files with 14 additions and 4 deletions
|
|
@ -45,7 +45,7 @@ See [this file](https://github.com/c-cube/ocaml-containers/blob/master/CHANGELOG
|
||||||
## Finding help
|
## Finding help
|
||||||
|
|
||||||
- the [github wiki](https://github.com/c-cube/ocaml-containers/wiki)
|
- the [github wiki](https://github.com/c-cube/ocaml-containers/wiki)
|
||||||
- the IRC channel (`##ocaml-containers` on Freenode)
|
- on IRC, ask `companion_cube` on `#ocaml`
|
||||||
|
|
||||||
## Use
|
## Use
|
||||||
|
|
||||||
|
|
@ -109,6 +109,10 @@ Documentation [here](http://cedeela.fr/~simon/software/containers).
|
||||||
|
|
||||||
- `CCIO`, basic utilities for IO
|
- `CCIO`, basic utilities for IO
|
||||||
|
|
||||||
|
### Containers.unix
|
||||||
|
|
||||||
|
- `CCUnix`, utils for `Unix`
|
||||||
|
|
||||||
### Containers.sexp
|
### Containers.sexp
|
||||||
|
|
||||||
A small S-expression library.
|
A small S-expression library.
|
||||||
|
|
|
||||||
4
_oasis
4
_oasis
|
|
@ -152,7 +152,7 @@ Document containers
|
||||||
Title: Containers docs
|
Title: Containers docs
|
||||||
Type: ocamlbuild (0.3)
|
Type: ocamlbuild (0.3)
|
||||||
BuildTools+: ocamldoc
|
BuildTools+: ocamldoc
|
||||||
Build$: flag(docs) && flag(advanced) && flag(bigarray) && flag(lwt) && flag(misc)
|
Build$: flag(docs) && flag(advanced) && flag(bigarray) && flag(lwt) && flag(misc) && flag(unix)
|
||||||
Install: true
|
Install: true
|
||||||
XOCamlbuildPath: .
|
XOCamlbuildPath: .
|
||||||
XOCamlbuildExtraArgs:
|
XOCamlbuildExtraArgs:
|
||||||
|
|
@ -160,7 +160,7 @@ Document containers
|
||||||
XOCamlbuildLibraries:
|
XOCamlbuildLibraries:
|
||||||
containers, containers.misc, containers.iter, containers.data,
|
containers, containers.misc, containers.iter, containers.data,
|
||||||
containers.string, containers.bigarray,
|
containers.string, containers.bigarray,
|
||||||
containers.advanced, containers.io, containers.sexp,
|
containers.advanced, containers.io, containers.unix, containers.sexp,
|
||||||
containers.lwt
|
containers.lwt
|
||||||
|
|
||||||
Executable run_benchs
|
Executable run_benchs
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,12 @@ Helpers to perform simple IO (mostly on files) and iterate on channels.
|
||||||
|
|
||||||
{!modules: CCIO}
|
{!modules: CCIO}
|
||||||
|
|
||||||
|
{4 Containers.unix}
|
||||||
|
|
||||||
|
Helpers that depend on {!Unix}, e.g. to spawn sub-processes.
|
||||||
|
|
||||||
|
{!modules: CCUnix}
|
||||||
|
|
||||||
{4 Containers.sexp}
|
{4 Containers.sexp}
|
||||||
|
|
||||||
A small S-expression library. The interface is relatively unstable, but
|
A small S-expression library. The interface is relatively unstable, but
|
||||||
|
|
|
||||||
|
|
@ -132,7 +132,7 @@ val uniq_succ : ?eq:('a -> 'a -> bool) -> 'a list -> 'a list
|
||||||
(** [uniq_succ l] removes duplicate elements that occur one next to the other.
|
(** [uniq_succ l] removes duplicate elements that occur one next to the other.
|
||||||
Examples:
|
Examples:
|
||||||
[uniq_succ [1;2;1] = [1;2;1]]
|
[uniq_succ [1;2;1] = [1;2;1]]
|
||||||
[uniq_succ [1;1;2] = [1;2]
|
[uniq_succ [1;1;2] = [1;2]]
|
||||||
@since NEXT_RELEASE *)
|
@since NEXT_RELEASE *)
|
||||||
|
|
||||||
(** {2 Indices} *)
|
(** {2 Indices} *)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue