class Hamster::SortedSet

def map

Other tags:
    Yield: - Once for each item.

Returns:
  • (SortedSet, Enumerator) -
def map
  return enum_for(:map) if not block_given?
  return self if empty?
  self.class.alloc(@node.from_items(super))
end