XEts.KV.delete_all
You're seeing just the function
delete_all
, go back to XEts.KV module for more information.
Link to this function
delete_all(t)
Specs
Delete all items from the table.
iex> XEts.KV.new(:foo, []) |> XEts.KV.put(:k, :v) |> XEts.KV.delete_all() |> XEts.KV.to_list()
[]