FixedArray.putMaybe

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

  1. bool insertBackMaybe(Es es)
  2. alias putMaybe = insertBackMaybe
    struct FixedArray(T, uint capacity_, bool borrowChecked = false)
    alias putMaybe = insertBackMaybe

Return Value

true iff all es were pushed, false otherwise.

Meta