module Bigstring:sig..end
Bigarray, for use in I/O and C-bindingstypet =(char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t
val create : ?max_mem_waiting_gc:Byte_units.t -> int -> tcreate lengthlength.
Content is undefined.max_mem_waiting_gc : default = 256 M in OCaml <= 3.12, 1 G otherwise. As
the total allocation of calls to create approach max_mem_waiting_gc,
the pressure in the garbage collector to be more agressive will increase.val init : int -> f:(int -> char) -> tinit n ~f creates a bigstring t of length n, with t.{i} = f ival of_string : ?pos:int -> ?len:int -> string -> tof_string ?pos ?len strlen in str starting at position pos.pos : default = 0len : default = String.length str - posval to_string : ?pos:int -> ?len:int -> t -> stringto_string ?pos ?len bstrInvalid_argument if the string would exceed runtime limits.len in bstr starting at position pos.pos : default = 0len : default = length bstr - posval check_args : loc:string -> pos:int -> len:int -> t -> unitcheck_args ~loc ~pos ~len bstr checks the position and length
arguments pos and len for bigstrings bstr.Invalid_argument if these arguments are illegal for the given
bigstring using loc to indicate the calling context.val get_opt_len : t -> pos:int -> int option -> intget_opt_len bstr ~pos opt_lenbstr starting at position pos and given optional length
opt_len. This function does not check the validity of its
arguments. Use Bigstring.check_args for that purpose.val length : t -> intlength bstrbstr.val sub : (t, t) Blit_intf.subsub ?pos ?len bstrbstr that starts at
position pos and has length len. The sub-bigstring is a unique copy
of the memory region, i.e. modifying it will not modify the original
bigstring. Note that this is different than the behavior of the
standard OCaml Array1.sub, which shares the memory. : ?pos:int -> ?len:int -> t -> tsub_shared ?pos ?len bstrbstr
that starts at position pos and has length len. The sub-bigstring
shares the same memory region, i.e. modifying it will modify the
original bigstring. Holding on to the sub-bigstring will also keep
the (usually bigger) original one around.pos : default = 0len : default = Bigstring.length bstr - posval get : t -> int -> charget t pos returns the character at posval set : t -> int -> char -> unitset t pos sets the character at posval is_mmapped : t -> boolis_mmapped bstrbstr is
memory-mapped.blit ~src ?src_pos ?src_len ~dst ?dst_pos () blits src_len characters
from src starting at position src_pos to dst at position dst_pos.include Blit.S
module To_string:Blit.S_distinctwith type src := twith type dst := string
module From_string:Blit.S_distinctwith type src := stringwith type dst := t
val map_file : shared:bool -> Unix.file_descr -> int -> tmap_file shared fd n memory-maps n characters of the data
associated with descriptor fd to a bigstring. Iff shared is
true, all changes to the bigstring will be reflected in the file.val find : ?pos:int -> ?len:int -> char -> t -> int optionfind ?pos ?len char t returns Some i for the smallest i >= pos such that
t.{i} = char, or None if there is no such i.pos : default = 0len : default = length bstr - posval unsafe_destroy : t -> unitunsafe_destroy bstr destroys the bigstring by deallocating its associated data or,
if memory-mapped, unmapping the corresponding file, and setting all dimensions to
zero. This effectively frees the associated memory or address-space resources
instantaneously. This feature helps working around a bug in the current OCaml
runtime, which does not correctly estimate how aggressively to reclaim such resources.
This operation is safe unless you have passed the bigstring to another thread that is
performing operations on it at the same time. Access to the bigstring after this
operation will yield array bounds exceptions.
Raises Failure if the bigstring has already been deallocated (or deemed "external",
which is treated equivalently), or if it has proxies, i.e. other bigstrings referring
to the same data.
val unsafe_get_int8 : t -> pos:int -> int
val unsafe_set_int8 : t -> pos:int -> int -> unit
val unsafe_get_uint8 : t -> pos:int -> int
val unsafe_set_uint8 : t -> pos:int -> int -> unit
val unsafe_get_int16_le : t -> pos:int -> int
val unsafe_get_int16_be : t -> pos:int -> int
val unsafe_set_int16_le : t -> pos:int -> int -> unit
val unsafe_set_int16_be : t -> pos:int -> int -> unit
val unsafe_get_uint16_le : t -> pos:int -> int
val unsafe_get_uint16_be : t -> pos:int -> int
val unsafe_set_uint16_le : t -> pos:int -> int -> unit
val unsafe_set_uint16_be : t -> pos:int -> int -> unit
val unsafe_get_int32_le : t -> pos:int -> int
val unsafe_get_int32_be : t -> pos:int -> int
val unsafe_set_int32_le : t -> pos:int -> int -> unit
val unsafe_set_int32_be : t -> pos:int -> int -> unit
val unsafe_get_uint32_le : t -> pos:int -> int
val unsafe_get_uint32_be : t -> pos:int -> int
val unsafe_set_uint32_le : t -> pos:int -> int -> unit
val unsafe_set_uint32_be : t -> pos:int -> int -> unit
val unsafe_get_int64_le_exn : t -> pos:int -> int
val unsafe_get_int64_be_exn : t -> pos:int -> int
val unsafe_set_int64_le : t -> pos:int -> int -> unit
val unsafe_set_int64_be : t -> pos:int -> int -> unit
val unsafe_get_int32_t_le : t -> pos:int -> Int32.t
val unsafe_get_int32_t_be : t -> pos:int -> Int32.t
val unsafe_set_int32_t_le : t -> pos:int -> Int32.t -> unit
val unsafe_set_int32_t_be : t -> pos:int -> Int32.t -> unit
val unsafe_get_int64_t_le : t -> pos:int -> Int64.t
val unsafe_get_int64_t_be : t -> pos:int -> Int64.t
val unsafe_set_int64_t_le : t -> pos:int -> Int64.t -> unit
val unsafe_set_int64_t_be : t -> pos:int -> Int64.t -> unit
val get_padded_fixed_string : padding:char -> t -> pos:int -> len:int -> unit -> string
val set_padded_fixed_string : padding:char -> t -> pos:int -> len:int -> string -> unit
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
val bin_t : t Bin_prot.Type_class.t
val bin_read_t : t Bin_prot.Read.reader
val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
val bin_reader_t : t Bin_prot.Type_class.reader
val bin_size_t : t Bin_prot.Size.sizer
val bin_write_t : t Bin_prot.Write.writer
val bin_writer_t : t Bin_prot.Type_class.writercreate lengthinit n ~f creates a bigstring t of length n, with t.{i} = f iof_string ?pos ?len strto_string ?pos ?len bstrcheck_args ~loc ~pos ~len bstr checks the position and length
arguments pos and len for bigstrings bstr.get_opt_len bstr ~pos opt_lenlength bstrsub ?pos ?len bstrsub_shared ?pos ?len bstrget t pos returns the character at posset t pos sets the character at posis_mmapped bstrblit ~src ?src_pos ?src_len ~dst ?dst_pos () blits src_len characters
from src starting at position src_pos to dst at position dst_pos.map_file shared fd n memory-maps n characters of the data
associated with descriptor fd to a bigstring. Iff shared is
true, all changes to the bigstring will be reflected in the file.find ?pos ?len char t returns Some i for the smallest i >= pos such that
t.{i} = char, or None if there is no such i.unsafe_destroy bstr destroys the bigstring by deallocating its associated data or,
if memory-mapped, unmapping the corresponding file, and setting all dimensions to
zero. This effectively frees the associated memory or address-space resources
instantaneously. This feature helps working around a bug in the current OCaml
runtime, which does not correctly estimate how aggressively to reclaim such resources.
This operation is safe unless you have passed the bigstring to another thread that is
performing operations on it at the same time. Access to the bigstring after this
operation will yield array bounds exceptions.