XEts.KV.get

You're seeing just the function get, go back to XEts.KV module for more information.
Link to this function

get(tab, value, default \\ nil)

Specs

get(t(), any(), any()) :: any()

Get an item from the table.

iex> XEts.KV.new(:foo, []) |> XEts.KV.put(:k, :v) |> XEts.KV.get(:k)
:v