Array.insertBack

size_t insertBack(Stuff)(Stuff stuff) if (is(Stuff : bool))

Inserts the specified elements at the back of the array. stuff can be a value convertible to bool or a range of objects convertible to bool.

Returns

The number of elements inserted.

Complexity: length + m if reallocation takes place, otherwise m, where m is the number of elements in stuff.

size_t insertBack(Stuff)(Stuff stuff) if (isInputRange!Stuff && is(ElementType!Stuff : bool))

ditto