Sha256: 8a7baffd037299dc7f6e86eead5c81e981d7ccacded7a20c6a22cef919f845ec
Contents?: true
Size: 606 Bytes
Versions: 63
Compression:
Stored size: 606 Bytes
Contents
# frozen_string_literal: true class Array # Places values 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. # # @example Places an item before another # [1, 2, 3].place(4).before(3) # => [1, 2, 4, 3] # @example Places an item after another # [:a, :b, :c].place(:x).after(:a) # => [:a, :x, :b, :c] # @param [Array] values value to insert # @return [Insertion] an insertion object to # @see Insertion#before # @see Insertion#after def place(*values) Insertion.new(self, values) end end
Version data entries
63 entries across 62 versions & 9 rubygems