class Hamster::SortedSet

def difference(other)

Returns:
  • (SortedSet) -

Parameters:
  • other (Enumerable) -- The collection to subtract from this set
def difference(other)
  self.class.alloc(@node.bulk_delete(other))
end