DArray.insertFront

This function inserts an S element at the front if there is space. Otherwise the behaviour is undefined.

struct DArray(T)
pragma(inline, true)
void
insertFront
@trusted
(
S
)
(
auto ref S t
)
if (
is(Unqual!(S) == T)
)

Meta