XEts.get
You're seeing just the function
get
, go back to XEts module for more information.
Link to this function
get(tab, value, default \\ nil)
Specs
Get a value from the table.
Examples
iex> tab = XEts.new(:table) |> XEts.insert(x: 1, y: 2)
iex> XEts.get(tab, :x)
1
iex> XEts.get(tab, :foo)
nil
iex> XEts.get(tab, :foo, :bar)
:bar