sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
module D : sig ... end
type 'a key = 'a t
type ('a, 'b) data = ('a, 'b) D.t
val empty : 'b t
val is_empty : 'b t -> bool
find x m
returns the current binding of x
in m
, or raises Not_found
if no such binding exists.
add x y m
returns a map containing the same bindings as m
, plus a binding of x
to y
. If x
was already bound in m
, its previous binding disappears.
val fold2_inter : ('b, 'c) fold2_inter -> 'b t -> 'b t -> 'c -> 'c