Vector.opSlice

The a..b operator returns the slice of the vector

struct Vector(T)
nothrow @nogc
typeof(this)
opSlice
(
size_t a
,
size_t b
)

Return Value

Type: typeof(this)

a new vector containing values from a to b

Meta