ets v0.5.0 Ets.Base View Source

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

Link to this section Summary

Link to this section Types

Link to this type option() View Source
option() ::
  {:name, atom()}
  | {:protection, :private | :protected | :public}
  | {:heir, :none | {pid(), any()}}
  | {:keypos, non_neg_integer()}
  | {:write_concurrency, boolean()}
  | {:read_concurrency, boolean()}
  | {:compressed, boolean()}
Link to this type options() View Source
options() :: [option()]
Link to this type table_types() View Source
table_types() :: :bag | :duplicate_bag | :ordered_set | :set