We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6bcfc1 + aa7385b commit f1b26c3Copy full SHA for f1b26c3
std/array.d
@@ -818,6 +818,10 @@ private void copyBackwards(T)(T[] src, T[] dest)
818
Inserts $(D stuff) (which must be an input range or any number of
819
implicitly convertible items) in $(D array) at position $(D pos).
820
821
+ Params:
822
+ array = The array that $(D stuff) will be inserted into.
823
+ pos = The position in $(D array) to insert the $(D stuff).
824
+ stuff = An input range, or any number of implicitly convertible items to insert into $(D array).
825
+/
826
void insertInPlace(T, U...)(ref T[] array, size_t pos, U stuff)
827
if (!isSomeString!(T[])
0 commit comments