mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-07 19:55:31 -05:00
more doc
This commit is contained in:
parent
425dba1e25
commit
d6b1a62201
4 changed files with 8 additions and 3 deletions
|
|
@ -111,7 +111,7 @@ Iterators:
|
||||||
|
|
||||||
Use bigarrays to hold large strings and map files directly into memory.
|
Use bigarrays to hold large strings and map files directly into memory.
|
||||||
|
|
||||||
{!modules: CCBigstring}
|
{!modules: CCBigstring CCArray1}
|
||||||
|
|
||||||
{4 Advanced}
|
{4 Advanced}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
(** {1 Bigarrays of dimension 1}
|
(** {1 Bigarrays of dimension 1}
|
||||||
|
|
||||||
|
{b status: unstable}
|
||||||
@since NEXT_RELEASE *)
|
@since NEXT_RELEASE *)
|
||||||
|
|
||||||
(** {2 used types} *)
|
(** {2 used types} *)
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
from a given vertex), she can use [Seq.return x] to build a sequence
|
from a given vertex), she can use [Seq.return x] to build a sequence
|
||||||
of one element.
|
of one element.
|
||||||
|
|
||||||
|
{b status: unstable}
|
||||||
|
|
||||||
@since NEXT_RELEASE *)
|
@since NEXT_RELEASE *)
|
||||||
|
|
||||||
type 'a sequence = ('a -> unit) -> unit
|
type 'a sequence = ('a -> unit) -> unit
|
||||||
|
|
|
||||||
|
|
@ -29,8 +29,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
Sets are hashconsed, so that set equality is physical equality. Some
|
Sets are hashconsed, so that set equality is physical equality. Some
|
||||||
sub-structure that is common to several sets is also perfectly shared.
|
sub-structure that is common to several sets is also perfectly shared.
|
||||||
|
|
||||||
{b status: unstable}
|
{b status: unstable}
|
||||||
@since NEXT_RELEASE *)
|
|
||||||
|
@since NEXT_RELEASE
|
||||||
|
*)
|
||||||
|
|
||||||
module type ELT = sig
|
module type ELT = sig
|
||||||
type t
|
type t
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue