Class: Array
- Inherits:
-
Object
- Object
- Array
- Extended by:
- Filigree::Destructurable
- Defined in:
- lib/filigree/match.rb
Overview
TODO: Figure out how to put this into a refinement.
Instance Method Summary collapse
-
#destructure(num_elems) ⇒ Array<Object>
Destructuring for the array class.
Methods included from Filigree::Destructurable
Instance Method Details
#destructure(num_elems) ⇒ Array<Object>
Destructuring for the array class. If the array is being matched against two patterns the destructuring of the array will be the first element and then an array containing the rest of the values. If there are three patterns the destructuring of the array will be the first and second elements, and then an array containing the remainder of the values.
640 641 642 |
# File 'lib/filigree/match.rb', line 640 def destructure(num_elems) [*self.first(num_elems - 1), self[(num_elems - 1)..-1]] end |