XEts.get_meta
You're seeing just the function
get_meta
, go back to XEts module for more information.
Link to this function
get_meta(tab)
Specs
Get the metadata of the table.
Examples
iex> tab = XEts.new(:table)
iex> {:meta, pid, _, _, fun, false, :infinity, []} = XEts.get_meta(tab)
iex> is_pid(pid) && is_function(fun, 2)
true
iex> %{tab: tab} = XEts.new(:table)
iex> {:meta, pid, _, _, fun, false, :infinity, []} = XEts.get_meta(tab)
iex> is_pid(pid) && is_function(fun, 2)
true