mirror of
https://github.com/dlang/phobos.git
synced 2025-05-11 23:05:34 +03:00
Improve documentation of std.array.insertInPlace
This commit is contained in:
parent
6cbaa94251
commit
aa7385bdcc
1 changed files with 4 additions and 0 deletions
|
@ -818,6 +818,10 @@ private void copyBackwards(T)(T[] src, T[] dest)
|
||||||
Inserts $(D stuff) (which must be an input range or any number of
|
Inserts $(D stuff) (which must be an input range or any number of
|
||||||
implicitly convertible items) in $(D array) at position $(D pos).
|
implicitly convertible items) in $(D array) at position $(D pos).
|
||||||
|
|
||||||
|
Params:
|
||||||
|
array = The array that $(D stuff) will be inserted into.
|
||||||
|
pos = The position in $(D array) to insert the $(D stuff).
|
||||||
|
stuff = An input range, or any number of implicitly convertible items to insert into $(D array).
|
||||||
+/
|
+/
|
||||||
void insertInPlace(T, U...)(ref T[] array, size_t pos, U stuff)
|
void insertInPlace(T, U...)(ref T[] array, size_t pos, U stuff)
|
||||||
if (!isSomeString!(T[])
|
if (!isSomeString!(T[])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue