package core_kernel

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Iobuf.FillSource

Fill.bin_prot X.bin_write_t t x writes x to t in bin-prot form, advancing past the bytes written.

Sourcetype ('a, 'd, 'w) t = (Core.read_write, seek) t -> 'a -> unit
Sourceval char : (char, 'd, 'w) t
Sourceval int64_t_be : (Core.Int64.t, 'd, 'w) t
Sourceval int64_t_le : (Core.Int64.t, 'd, 'w) t
Sourceval head_padded_fixed_string : padding:char -> len:int -> (string, 'd, 'w) t
Sourceval tail_padded_fixed_string : padding:char -> len:int -> (string, 'd, 'w) t
Sourceval string : str_pos:int -> len:int -> (string, 'd, 'w) t
Sourceval bytes : str_pos:int -> len:int -> (Core.Bytes.t, 'd, 'w) t
Sourceval bigstring : str_pos:int -> len:int -> (Core.Bigstring.t, 'd, 'w) t
Sourceval stringo : ?str_pos:int -> ?len:int -> (string, 'd, 'w) t
Sourceval byteso : ?str_pos:int -> ?len:int -> (Core.Bytes.t, 'd, 'w) t
Sourceval bigstringo : ?str_pos:int -> ?len:int -> (Core.Bigstring.t, 'd, 'w) t
Sourceval bin_prot : 'a Core.Bin_prot.Type_class.writer -> ('a, 'd, 'w) t
Sourceval int8_trunc : (int, 'd, 'w) t
Sourceval int16_be_trunc : (int, 'd, 'w) t
Sourceval int16_le_trunc : (int, 'd, 'w) t
Sourceval int32_be_trunc : (int, 'd, 'w) t
Sourceval int32_le_trunc : (int, 'd, 'w) t
Sourceval int64_be : (int, 'd, 'w) t
Sourceval int64_le : (int, 'd, 'w) t
Sourceval uint8_trunc : (int, 'd, 'w) t
Sourceval uint16_be_trunc : (int, 'd, 'w) t
Sourceval uint16_le_trunc : (int, 'd, 'w) t
Sourceval uint32_be_trunc : (int, 'd, 'w) t
Sourceval uint32_le_trunc : (int, 'd, 'w) t
Sourceval uint64_be_trunc : (int, 'd, 'w) t
Sourceval uint64_le_trunc : (int, 'd, 'w) t
Sourcemodule Int_repr : sig ... end
Sourceval 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.

OCaml

Innovation. Community. Security.