class Array

frozen_string_literal: true

def place(*values) Insertion.new(self, values) end

Other tags:
    See: Insertion#after -
    See: Insertion#before -

Returns:
  • (Insertion) - an insertion object to

Parameters:
  • values (Array) -- value to insert

Other tags:
    Example: Places an item after another -
    Example: Places an item before another -
def place(*values) Insertion.new(self, values) end