Module String2SetMap.MapSource
Sourceval diff_pred : ('a -> 'a -> bool) -> 'a t -> 'a t -> 'a t * 'a t Sourceval map2_with_logs :
('parameters,
'error,
('parameters -> 'error -> 'a -> 'error * 'c) ->
('parameters -> 'error -> 'b -> 'error * 'c) ->
('parameters -> 'error -> 'a -> 'b -> 'error * 'c) ->
'a t ->
'b t ->
'error * 'c t)
SetMap.with_log_wrap Sourceval map2z_with_logs :
('parameters,
'error,
('parameters -> 'error -> 'a -> 'a -> 'error * 'a) ->
'a t ->
'a t ->
'error * 'a t)
SetMap.with_log_wrap Sourceval fold2z_with_logs :
('parameters,
'error,
('parameters -> 'error -> elt -> 'a -> 'b -> 'c -> 'error * 'c) ->
'a t ->
'b t ->
'c ->
'error * 'c)
SetMap.with_log_wrap Sourceval fold2_with_logs :
('parameters,
'error,
('parameters -> 'error -> elt -> 'a -> 'c -> 'error * 'c) ->
('parameters -> 'error -> elt -> 'b -> 'c -> 'error * 'c) ->
('parameters -> 'error -> elt -> 'a -> 'b -> 'c -> 'error * 'c) ->
'a t ->
'b t ->
'c ->
'error * 'c)
SetMap.with_log_wrap Sourceval fold2_sparse_with_logs :
('parameters,
'error,
('parameters -> 'error -> elt -> 'a -> 'b -> 'c -> 'error * 'c) ->
'a t ->
'b t ->
'c ->
'error * 'c)
SetMap.with_log_wrap Sourceval iter2_sparse_with_logs :
('parameters,
'error,
('parameters -> 'error -> elt -> 'a -> 'b -> 'error) ->
'a t ->
'b t ->
'error)
SetMap.with_log_wrap Sourceval fold_restriction_with_missing_associations_with_logs :
('parameters,
'error,
(elt -> 'a -> ('error * 'b) -> 'error * 'b) ->
(elt -> ('error * 'b) -> 'error * 'b) ->
set ->
'a t ->
'b ->
'error * 'b)
SetMap.with_log_wrap Sourceval iter : (elt -> 'a -> unit) -> 'a t -> unit Sourceval fold : (elt -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b Sourceval monadic_fold2 :
'parameters ->
'exceptions_caught_and_uncaught ->
('parameters ->
'exceptions_caught_and_uncaught ->
elt ->
'a ->
'b ->
'c ->
'exceptions_caught_and_uncaught * 'c) ->
('parameters ->
'exceptions_caught_and_uncaught ->
elt ->
'a ->
'c ->
'exceptions_caught_and_uncaught * 'c) ->
('parameters ->
'exceptions_caught_and_uncaught ->
elt ->
'b ->
'c ->
'exceptions_caught_and_uncaught * 'c) ->
'a t ->
'b t ->
'c ->
'exceptions_caught_and_uncaught * 'c Sourceval monadic_fold2_sparse :
'parameters ->
'exceptions_caught_and_uncaught ->
('parameters ->
'exceptions_caught_and_uncaught ->
elt ->
'a ->
'b ->
'c ->
'exceptions_caught_and_uncaught * 'c) ->
'a t ->
'b t ->
'c ->
'exceptions_caught_and_uncaught * 'c Sourceval monadic_iter2_sparse :
'parameters ->
'exceptions_caught_and_uncaught ->
('parameters ->
'exceptions_caught_and_uncaught ->
elt ->
'a ->
'b ->
'exceptions_caught_and_uncaught) ->
'a t ->
'b t ->
'exceptions_caught_and_uncaught Sourceval monadic_fold_restriction :
'parameters ->
'exceptions_caught_and_uncaught ->
('parameters ->
'exceptions_caught_and_uncaught ->
elt ->
'a ->
'b ->
'exceptions_caught_and_uncaught * 'b) ->
set ->
'a t ->
'b ->
'exceptions_caught_and_uncaught * 'b Sourceval map : ('a -> 'b) -> 'a t -> 'b t Sourceval map2 : ('a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t Sourceval for_all : (elt -> 'a -> bool) -> 'a t -> bool Sourceval filter_one : (elt -> 'a -> bool) -> 'a t -> (elt * 'a) option Sourceval compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int Sourceval equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool