Vector.opSlice

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

Return Value

Type: auto

Whole Internal Array of E.

Meta