package extlib

  1. Overview
  2. Docs
A complete yet small extension for OCaml standard library

Install

dune-project
 Dependency

Authors

Maintainers

Sources

extlib-1.8.0.tar.gz
md5=43fb3bf2989671af1769147b1171d080
sha512=dedd2bb4a63f2df9e451dbe6aede18d873489a8675f48ded09131f2af4d00dbeaecc8750039b2e4facb9f5f9b1b01c6b7accd392bf8ac5a3f2c801562ce5c4ee

doc/extlib/ExtList/index.html

Module ExtListSource

Additional and modified functions for lists.

The OCaml standard library provides a module for list functions. This ExtList module can be used to override the List module or as a standalone module. It provides new functions and modify the behavior of some other ones (in particular all functions are now tail-recursive).

Sourcemodule List : sig ... end
Sourceval (@) : 'a list -> 'a list -> 'a list

the new implementation for ( @ ) operator, see List.append.