Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/estdlib/src/ets.erl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
]).

-opaque table() :: atom | reference().
-type table_type() :: set.
-type table_type() :: set | duplicate_bag.
-type access_type() :: private | protected | public.
-type option() :: table_type() | {keypos, non_neg_integer()} | access_type().
-type options() :: [option()].
Expand Down
6 changes: 6 additions & 0 deletions src/libAtomVM/defaultatoms.def
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,9 @@ X(BREAK_IGNORED_ATOM, "\xD", "break_ignored")

X(SCOPE_ATOM, "\x5", "scope")
X(NOMATCH_ATOM, "\x7", "nomatch")
X(NAMED_TABLE_ATOM, "\xB", "named_table")
X(KEYPOS_ATOM, "\x6", "keypos")
X(PRIVATE_ATOM, "\x7", "private")
X(PUBLIC_ATOM, "\x6", "public")
X(DUPLICATE_BAG_ATOM, "\xd", "duplicate_bag")
X(SET_ATOM, "\x3", "set")
Loading
Loading