Module Unsafe.Fill

type ('a, 'd, 'w, 'l) t = (Core.read_write, Iobuf__.Iobuf_type_intf.Definitions.no_seek, 'l) t @ local -> ('a -> unit) @ local
type ('a, 'd, 'w, 'l) t__local = (Core.read_write, Iobuf__.Iobuf_type_intf.Definitions.no_seek, 'l) t @ local -> ('a @ local -> unit) @ local
val char : (char, 'd, 'w, 'l) t
val int8_trunc : (int, 'd, 'w, 'l) t
val int16_be_trunc : (int, 'd, 'w, 'l) t
val int16_le_trunc : (int, 'd, 'w, 'l) t
val int32_be_trunc : (int, 'd, 'w, 'l) t
val int32_le_trunc : (int, 'd, 'w, 'l) t
val int64_be : (int, 'd, 'w, 'l) t
val int64_le : (int, 'd, 'w, 'l) t
val uint8_trunc : (int, 'd, 'w, 'l) t
val uint16_be_trunc : (int, 'd, 'w, 'l) t
val uint16_le_trunc : (int, 'd, 'w, 'l) t
val uint32_be_trunc : (int, 'd, 'w, 'l) t
val uint32_le_trunc : (int, 'd, 'w, 'l) t
val uint64_be_trunc : (int, 'd, 'w, 'l) t
val uint64_le_trunc : (int, 'd, 'w, 'l) t
val int64_t_be : (Core.Int64.t, 'd, 'w, 'l) t__local
val int64_t_le : (Core.Int64.t, 'd, 'w, 'l) t__local
val head_padded_fixed_string : padding:char -> len:int -> (string, 'd, 'w, 'l) t__local
val tail_padded_fixed_string : padding:char -> len:int -> (string, 'd, 'w, 'l) t__local
val string : str_pos:int -> len:int -> (string, 'd, 'w, 'l) t__local
val bytes : str_pos:int -> len:int -> (Core.Bytes.t, 'd, 'w, 'l) t__local
val bigstring : str_pos:int -> len:int -> (Core.Bigstring.t, 'd, 'w, 'l) t__local
val stringo : ?str_pos:int @ local -> (?len:int @ local -> (string, 'd, 'w, 'l) t__local @ local) @ local
val byteso : ?str_pos:int @ local -> (?len:int @ local -> (Core.Bytes.t, 'd, 'w, 'l) t__local @ local) @ local
val bigstringo : ?str_pos:int @ local -> (?len:int @ local -> (Core.Bigstring.t, 'd, 'w, 'l) t__local @ local) @ local
module Int_repr : sig ... end
val decimal : (int, _, _, _) t

decimal t int is equivalent to Iobuf.Fill.string t (Int.to_string int), but with improved efficiency and no intermediate allocation.

In other words: It fills the decimal representation of int to t. t is advanced by the number of characters written and no terminator is added. If sufficient space is not available, decimal will raise.

val padded_decimal : len:int -> (int, _, _, _) t

Same as decimal t int, but padding to len with prefix '0's.

val date_string_iso8601_extended : (Core.Date.t, _, _, _) t

date_string_iso8601_extended t date is equivalent to Iobuf.Fill.string t (Date.to_string date), but with improved efficiency and no intermediate allocation.

In other words: It fills the ISO 8601 extended representation (YYYY-MM-DD) of date to t. t is advanced by 10 characters and no terminator is added. If sufficient space is not available, date will raise.