Module: Polyfill::V2_4::MatchData::Instance::ValuesAt::Method

Defined in:
lib/polyfill/v2_4/match_data/instance/values_at.rb

Instance Method Summary collapse

Instance Method Details

#values_at(*indexes) ⇒ Object



7
8
9
10
11
# File 'lib/polyfill/v2_4/match_data/instance/values_at.rb', line 7

def values_at(*indexes)
  indexes.each_with_object([]) do |index, acc|
    acc.push(self[index])
  end
end