XEts.KV.delete_all

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

Specs

delete_all(t()) :: t()

Delete all items from the table.

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