class Hamster::SortedSet

def union(other)

Returns:
  • (SortedSet) -

Parameters:
  • other (Enumerable) -- The collection to merge with
def union(other)
  self.class.alloc(@node.bulk_insert(other))
end