MapSet.to_list

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

Specs

to_list(t(val)) :: [val] when val: value()

Converts map_set to a list.

Examples

iex> MapSet.to_list(MapSet.new([1, 2, 3]))
[1, 2, 3]