Vector.opSlice

  1. auto opSlice()
  2. auto opSlice(uint off, uint len)
    struct Vector(E, uint D, bool normalizedFlag = false, Orient orient = Orient.column)
    opSlice
    (
    uint off
    ,
    uint len
    )
    if (
    D >= 1 &&
    (
    !normalizedFlag ||
    isFloatingPoint!E
    )
    )

Return Value

Type: auto

Slice of Internal Array of E.

Meta