Liquex.Filter.uniq
You're seeing just the function
uniq
, go back to Liquex.Filter module for more information.
Removes any duplicate elements in an array.
Examples
iex> Liquex.Filter.uniq(~w(ants bugs bees bugs ants), %{})
["ants", "bugs", "bees"]