API Reference ets v0.9.0

modules

Modules

ETS

ETS, an Elixir wrapper for Erlang's :ets module.

Module for creating and interacting with :ets tables of the type :bag and :duplicate_bag.

Base implementation for table modules (e.g. ETS.Set and ETS.Bag). Should not be used directly.

The Key Value Set is an extension of ETS.Set which abstracts the concept of tuple records away, replacing it with the standard concept of key/value. Behind the scenes, the set stores its records as {key, value}.

Module for creating and interacting with :ets tables of the type :set and :ordered_set.

Contains helper macros used by ETS modules.