Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/common/noyes_dsl.rb
Instance Method Summary collapse
-
#>>(filter) ⇒ Object
Run this array through a filter or anything that implements the ‘<<’ operator.
Instance Method Details
#>>(filter) ⇒ Object
Run this array through a filter or anything that implements the ‘<<’ operator. Returns whatever the filter returns.
4 5 6 |
# File 'lib/common/noyes_dsl.rb', line 4 def >> filter filter << self end |