Module: Polyfill::V2_4::MatchData::ValuesAt::Method
- Defined in:
- lib/polyfill/v2_4/match_data/values_at.rb
Instance Method Summary collapse
Instance Method Details
#values_at(*indexes) ⇒ Object
6 7 8 9 10 |
# File 'lib/polyfill/v2_4/match_data/values_at.rb', line 6 def values_at(*indexes) indexes.each_with_object([]) do |index, acc| acc.push(self[index]) end end |