StaticArray.insertBackMaybe

Try to add elements es to the back. NOTE: doesn't invalidate any borrow

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

Return Value

Type: bool

true iff all es were pushed, false otherwise.

Meta