Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type t = {
read : bytes -> int -> int -> int;
seek : int -> unit;
size : unit -> int option;
reset : unit -> unit;
}
A function to read taking the buffer to fill the offset and the length and returning the number of bytes actually read.
Make a reading function retry until buffer is filled (or an error occurs).
val read : t -> int -> string
val drop : t -> int -> unit
val byte : t -> int
val uint8 : t -> int
val int16_be : t -> int
val int16_le : t -> int
val uint16_le : t -> int
val int16 : Metadata__.MetadataBase.endianness -> t -> int
val int24_be : t -> int
val int32_le : t -> int
val uint32_le : t -> int
val int32_be : t -> int
val size : t -> int option
val reset : t -> unit
Go back at the beginning of the stream.
val with_file : (t -> 'a) -> string -> 'b
val with_string : (t -> 'a) -> string -> 'b