XEts.get_meta

You're seeing just the function get_meta, go back to XEts module for more information.

Specs

get_meta(t()) :: tuple()
get_meta(tab()) :: tuple()

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