Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/name_tamer/array.rb
Instance Method Summary collapse
Instance Method Details
#neighbours ⇒ Object
3 4 5 6 |
# File 'lib/name_tamer/array.rb', line 3 def neighbours last_index = length - 1 0.upto(last_index).flat_map { |i| i.upto(last_index).map { |j| self[i..j] } } end |