FixedArray.insertBackMaybe

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

  1. bool insertBackMaybe(Es es)
    struct FixedArray(T, uint capacity_, bool borrowChecked = false)
    @trusted
    bool
    insertBackMaybe
    (
    Es...
    )
    (
    Es es
    )
    if (
    Es.length <= capacity
    )
  2. alias putMaybe = insertBackMaybe

Return Value

Type: bool

true iff all es were pushed, false otherwise.

Meta