FixedArray.putMaybe

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

struct FixedArray(T, uint capacity_, bool borrowChecked = false)
alias putMaybe = insertBackMaybe

Return Value

true iff all es were pushed, false otherwise.

Meta