XEts.KV.to_list
You're seeing just the function
to_list
, go back to XEts.KV module for more information.
Link to this function
to_list(map)
Specs
Convert the table to a list.
iex> XEts.KV.new(:foo, []) |> XEts.KV.put(:k, :v) |> XEts.KV.to_list()
[{:k, :v}]