AppendBuffer.opSlice

Returns content[start .. end]. start must be at most end and end must be at most the current content length.

  1. T[] opSlice()
  2. T[] opSlice(size_t start, size_t end)
    class AppendBuffer(T, Base : AppendBufferImpl)
    T[]
    opSlice
    (
    size_t start
    ,
    size_t end
    )

Parameters

start size_t

start index

end size_t

end index (exclusive)

Return Value

Type: T[]

content[start .. end]

Meta