Vector.opSlice

Returns a slice. @system because the pointer in the slice might dangle.

  1. auto opSlice()
  2. auto opSlice(long start, long end)
    struct Vector(E, Allocator = typeof(theAllocator))
    @system scope return
    opSlice
    (
    this This
    )
    (
    long start
    ,
    long end
    )
    if (
    isAllocator!Allocator
    )

Meta