StaticArray.sliceRW

Get read-write slice in range i .. j.

  1. WriteBorrowed!(T[], typeof(this)) sliceRW()
  2. WriteBorrowed!(T[], typeof(this)) sliceRW(size_t i, size_t j)
    struct StaticArray(T, uint capacity_, bool borrowChecked = false)
    @trusted return scope
    static if(borrowChecked)
    WriteBorrowed!(T[], typeof(this))
    sliceRW
    (
    size_t i
    ,
    size_t j
    )

Meta