View Source edb_server_sets (edb v0.3.0)
Summary
Types
-type set(A) :: #{A => term()}.
Functions
-spec fold(Function, Acc0, Set) -> Acc1 when Function :: fun((A, Acc) -> Acc), Set :: set(A), Acc0 :: Acc, Acc1 :: Acc.
-spec map_subtract_keys(Map :: #{K => V}, KeysToRemove :: set(K)) -> #{K => V}.
-spec take_element(A, #{A => []}) -> {found, #{A => []}} | not_found.
-spec to_map(set(K), V) -> #{K => V}.