FixedArray.insertBack

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

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

Meta