Module Iobuf.Consume
Consume.string t ~len
reads len
characters (all, by default) from t
into a new string and advances the lower bound of the window accordingly.
Consume.bin_prot X.bin_read_t t
returns the initial X.t
in t
, advancing past the bytes read.
type src
= (Core_kernel.read, seek) t
To_bytes.blito ~src ~dst ~dst_pos ~src_len ()
readssrc_len
bytes fromsrc
, advancingsrc
's window accordingly, and writes them intodst
starting atdst_pos
. By defaultdst_pos = 0
andsrc_len = length src
. It is an error ifdst_pos
andsrc_len
don't specify a valid region ofdst
or ifsrc_len > length src
.
module To_bytes : Iobuf__.Iobuf_intf.Consuming_blit with type src := src with type dst := Core_kernel.Bytes.t
module To_bigstring : Iobuf__.Iobuf_intf.Consuming_blit with type src := src with type dst := Core_kernel.Bigstring.t
module To_string : sig ... end
include Iobuf__.Iobuf_intf.Accessors_read with type ('a, 'r, 's) t = ([> Core_kernel.read ] as 'r, seek) t -> 'a with type 'a bin_prot := 'a Bin_prot.Type_class.reader
include Iobuf__.Iobuf_intf.Accessors_common
val char : (char, 'd, 'w) t
val int64_t_be : (Core_kernel.Int64.t, 'd, 'w) t
val int64_t_le : (Core_kernel.Int64.t, 'd, 'w) t
val head_padded_fixed_string : padding:char -> len:int -> (string, 'd, 'w) t
val tail_padded_fixed_string : padding:char -> len:int -> (string, 'd, 'w) t
val string : str_pos:int -> len:int -> (string, 'd, 'w) t
val bytes : str_pos:int -> len:int -> (Core_kernel.Bytes.t, 'd, 'w) t
val bigstring : str_pos:int -> len:int -> (Core_kernel.Bigstring.t, 'd, 'w) t
val stringo : ?str_pos:int -> ?len:int -> (string, 'd, 'w) t
val byteso : ?str_pos:int -> ?len:int -> (Core_kernel.Bytes.t, 'd, 'w) t
val bigstringo : ?str_pos:int -> ?len:int -> (Core_kernel.Bigstring.t, 'd, 'w) t
val bin_prot : 'a bin_prot -> ('a, 'd, 'w) t
val int8 : (int, 'd, 'w) t
val int16_be : (int, 'd, 'w) t
val int16_le : (int, 'd, 'w) t
val int32_be : (int, 'd, 'w) t
val int32_le : (int, 'd, 'w) t
val int64_be_exn : (int, 'd, 'w) t
val int64_le_exn : (int, 'd, 'w) t
val int64_be_trunc : (int, 'd, 'w) t
val int64_le_trunc : (int, 'd, 'w) t
val uint8 : (int, 'd, 'w) t
val uint16_be : (int, 'd, 'w) t
val uint16_le : (int, 'd, 'w) t
val uint32_be : (int, 'd, 'w) t
val uint32_le : (int, 'd, 'w) t
val uint64_be_exn : (int, 'd, 'w) t
val uint64_le_exn : (int, 'd, 'w) t