XEts.KV.to_list

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

Specs

to_list(t()) :: list()

Convert the table to a list.

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