binsec
Binsec.Imap
binsec.amd64decoder
binsec.armv7decoder
binsec.armv8decoder
binsec.smt
binsec.sse
binsec.sse_register
libformula
libterm
type 'a t
val empty : 'a t
val add : base:Z.t -> int -> 'a -> 'a t -> 'a t
add ~base size value t add a new pair ([base .. base + size[, value) in t
add ~base size value t
base
size
value
t
val mem : Z.t -> 'a t -> bool
mem index t check if index is in t.
mem index t
index
val find : Z.t -> 'a t -> 'a
find index t lookup index in t.
find index t
Not_found
if index is not in t.
val iter : ((Z.t * Z.t) -> 'a -> unit) -> 'a t -> unit