dexts v0.3.1 Dexts.Dict
Summary
Functions
Read the terms in the given slot, see ets:slot
Check if the table is a bag
Clear the contents of the table, see dets:delete_all_objects
Close the table, see dets:close
Get the number of terms in the table
Count the number of terms matching the match_spec, see ets:select_count
Check if the table is a duplicate bag
Get the first key in table, see ets:first
Fold the table from the left, see ets:foldl
Fold the table from the right, see ets:foldr
Get info about the table, see dets:info
Get info about the table, see dets:info
Match terms from the table with the given pattern, see ets:match
Wrap a table or create one with the passed options
Wrap a table or create one with the passed options
Get the next key in the table, see ets:next
Open an already existing table
Open an already existing table
Select terms in the table using a match_spec, see ets:select
Check if the table is a set
Types
Functions
Specs
count(t, any) :: non_neg_integer
Count the number of terms matching the match_spec, see ets:select_count
.
Specs
foldl(t, any, (term, any -> any)) :: any
Fold the table from the left, see ets:foldl
.
Specs
foldr(t, any, (term, any -> any)) :: any
Fold the table from the right, see ets:foldr
.
Match terms from the table with the given pattern, see ets:match
.
Specs
select(t, any, Keyword.t) ::
Dexts.Selection.t |
nil
Select terms in the table using a match_spec, see ets:select
.