Header menu logo fantomas

IntMap Module

Functions and values

Function or value Description

add k v t

Full Usage: add k v t

Parameters:
    k : int
    v : 'T
    t : IntMap<'T>

Returns: Zmap<int, 'T>
k : int
v : 'T
t : IntMap<'T>
Returns: Zmap<int, 'T>

empty ()

Full Usage: empty ()

Parameters:
    () : unit

Returns: Zmap<int, 'a>
() : unit
Returns: Zmap<int, 'a>

find k t

Full Usage: find k t

Parameters:
Returns: 'T
k : int
t : IntMap<'T>
Returns: 'T

fold f t z

Full Usage: fold f t z

Parameters:
    f : int -> 'T -> 'a -> 'a
    t : IntMap<'T>
    z : 'a

Returns: 'a
f : int -> 'T -> 'a -> 'a
t : IntMap<'T>
z : 'a
Returns: 'a

iter f t

Full Usage: iter f t

Parameters:
    f : int -> 'T -> unit
    t : IntMap<'T>

f : int -> 'T -> unit
t : IntMap<'T>

map f t

Full Usage: map f t

Parameters:
Returns: Zmap<int, 'a>
f : 'T -> 'a
t : IntMap<'T>
Returns: Zmap<int, 'a>

mem k t

Full Usage: mem k t

Parameters:
Returns: bool
k : int
t : IntMap<'T>
Returns: bool

remove k t

Full Usage: remove k t

Parameters:
Returns: Zmap<int, 'T>
k : int
t : IntMap<'T>
Returns: Zmap<int, 'T>

tryFind k t

Full Usage: tryFind k t

Parameters:
Returns: 'T option
k : int
t : IntMap<'T>
Returns: 'T option

Type something to start searching.