insert!
insert!(collection, index, item)
Insert an item
into collection
at the given index
.
index
is the index of item
in the resulting collection
.
julia> insert!([6, 5, 4, 2, 1], 4, 3)
6-element Array{Int64,1}:
6
5
4
3
2
1
Examples
julia> insert!([6, 5, 4, 2, 1], 4, 3)
6-element Array{Int64,1}:
6
5
4
3
2
1
julia> foo = [4,2,1];
julia> insert!(foo, 2, 3);
julia> foo
4-element Array{Int64,1}:
4
3
2
1
See Also
append!, delete!, deleteat!, empty!, endof, filter, filter!, gc, get!, getkey, haskey, insert!, isempty, keys, map, map!, merge, merge!, pop!, prepend!, push!, reduce, resize!, shift!, splice!, unshift!, values,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.