AppendBuffer.opSliceAssign

Copies chunk to content[start .. end]. chunk.length must be end - start and end must be at most the current content length.

  1. T[] opSliceAssign(ParamT element)
  2. T[] opSliceAssign(ParamT element, size_t start, size_t end)
  3. T[] opSliceAssign(ParamT[] chunk)
  4. T[] opSliceAssign(ParamT[] chunk, size_t start, size_t end)
    class AppendBuffer(T, Base : AppendBufferImpl)
    T[]
    opSliceAssign
    (,
    size_t start
    ,
    size_t end
    )

Parameters

chunk ParamT[]

chunk to copy to the content

start size_t

start of the slice

end size_t

end of the slice

Return Value

Type: T[]

slice to chunk in the content

Meta