FixedSizeArray.insertFront

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

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

Meta