package owee

  1. Overview
  2. Docs
val dim : t -> int
exception Invalid_format of string
val invalid_format : string -> 'a
val assert_format : bool -> string -> unit
type s8 = int
type u8 = int
type u16 = int
type s32 = int
type u32 = int
type u64 = int
type s128 = int
type u128 = int
type cursor = {
  1. buffer : t;
  2. mutable position : int;
}
val cursor : ?at:int -> t -> cursor
val seek : cursor -> int -> unit
val ensure : cursor -> int -> string -> unit
val advance : cursor -> int -> unit
val at_end : cursor -> bool
val sub : cursor -> int -> cursor
module Read : sig ... end