Sha256: 10f1ab67dc0749f7c2da7931f00db96cd0415f52cd4c09bc97f9b3ad84437b3e
Contents?: true
Size: 1.86 KB
Versions: 12
Compression:
Stored size: 1.86 KB
Contents
o:$YARD::CodeObjects::MethodObject: @name:insert:@docstringIC:YARD::Docstring"čInserts the given values before the element with the given index (which may be negative). a = %w{ a b c d } a.insert(2, 99) #=> ["a", "b", 99, "c", "d"] a.insert(-2, 1, 2, 3) #=> ["a", "b", 99, "c", 1, 2, 3, "d"] :@objectu:YARD::StubProxyArray#insert: @summary0: @all"Inserts the given values before the element with the given index (which may be negative). a = %w{ a b c d } a.insert(2, 99) #=> ["a", "b", 99, "c", "d"] a.insert(-2, 1, 2, 3) #=> ["a", "b", 99, "c", 1, 2, 3, "d"] @overload insert(index, obj...) @return [Array]:@ref_tags[ : @tags[o:YARD::Tags::OverloadTag ; u;Array#insert;;;IC; "