module Gemmy::Patches::EnumeratorPatch::InstanceMethods::MapBy

Public Instance Methods

map_by(&blk) click to toggle source

maps to hash Each iteration returns array [hash_key, hash_val] hash values are stored in arrays

# File lib/gemmy/patches/enumerator_patch.rb, line 38
def map_by(&blk)
  clone.map_by &blk
end