FixedArray.insertBack

Add elements es to the back. Throws when array becomes full. NOTE doesn't invalidate any borrow

struct FixedArray(T, uint capacity_, bool borrowChecked = false)
@trusted
void
insertBack
(
Es...
)
(
Es es
)
if (
Es.length <= capacity
)

Meta