module Unpack_sequence: Unpack_sequence
module Result:sig
..end
val unpack_from_string_pipe : ('a, 'b) Core.Std.Unpack_buffer.t ->
string Import.Pipe.Reader.t ->
'a Import.Pipe.Reader.t * ('a, 'b) Result.t Import.Deferred.t
unpack_from_string_pipe unpack_buffer input
returns (output, result)
, and uses
unpack_buffer
to unpack values from input
until input
is closed. It puts the
unpacked values into output
, which is closed once unpacking finishes, normally
or due to an error. result
indicates why unpacking finished.
unpack_from_reader
and unpack_bin_prot_from_reader
are similar. They are more
efficient in that they blit bytes directly from the reader buffer to the unpack
buffer, without any intervening allocation.
val unpack_from_reader : ('a, 'b) Core.Std.Unpack_buffer.t ->
Import.Reader.t ->
'a Import.Pipe.Reader.t * ('a, 'b) Result.t Import.Deferred.t
val unpack_bin_prot_from_reader : 'a Bin_prot.Type_class.reader ->
Import.Reader.t ->
'a Import.Pipe.Reader.t *
('a, unit) Result.t Import.Deferred.t