MapSet.difference
You're seeing just the function
difference
, go back to MapSet module for more information.
Specs
Returns a set that is map_set1
without the members of map_set2
.
Examples
iex> MapSet.difference(MapSet.new([1, 2]), MapSet.new([2, 3, 4]))
#MapSet<[1]>