- (Insertion) place(value)
Places a value before or after another object (by value) in an array. This is used in tandem with the before and after methods of the Insertion class.
[1, 2, 3].place(4).before(3) # => [1, 2, 4, 3]
[:a, :b, :c].place(:x).after(:a) # => [:a, :x, :b, :c]
14
# File 'lib/yard/core_ext/array.rb', line 14 def place(value) Insertion.new(self, value) end