Method: Immutable::Map#map

Defined in:
lib/immutable/map.rb

#mapObject

Maps the given block over all values in self.



96
97
98
# File 'lib/immutable/map.rb', line 96

def map
  map_with_key { |k, v| yield(v) }
end