2001-09-06 01:52:32 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
2001-09-06 01:52:32 -07:00
|
|
|
(* *)
|
|
|
|
(* Jacques Garrigue, Kyoto University RIMS *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 2001 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
2001-12-07 05:41:02 -08:00
|
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
|
|
(* the special exception on linking described in file ../LICENSE. *)
|
2001-09-06 01:52:32 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2001-10-26 16:33:00 -07:00
|
|
|
(** Standard labeled libraries.
|
2001-09-27 01:24:50 -07:00
|
|
|
|
2001-10-26 16:33:00 -07:00
|
|
|
This meta-module provides labelized version of the {!Array},
|
2014-05-01 14:54:15 -07:00
|
|
|
{!Bytes}, {!List} and {!String} modules.
|
2001-09-27 01:24:50 -07:00
|
|
|
|
|
|
|
They only differ by their labels. Detailed interfaces can be found
|
2014-04-29 04:56:17 -07:00
|
|
|
in [arrayLabels.mli], [bytesLabels.mli], [listLabels.mli]
|
|
|
|
and [stringLabels.mli].
|
2001-09-27 01:24:50 -07:00
|
|
|
*)
|
2001-09-06 01:52:32 -07:00
|
|
|
|
2013-09-30 20:17:11 -07:00
|
|
|
module Array = ArrayLabels
|
2014-04-29 04:56:17 -07:00
|
|
|
module Bytes = BytesLabels
|
2013-09-30 20:17:11 -07:00
|
|
|
module List = ListLabels
|
|
|
|
module String = StringLabels
|