clear()

Clears all or part of the buffer
clear(start:number, end:number)

Parameters

Name Type Действие Значение по умолчанию
start number Cleaning start index
end number Cleaning end index

Return value

A reference to an object of type Buffer for a chain of calls

Example

// Clear the entire buffer
myBuffer.clear();

// Clears the buffer from elements 10 to 15
myBuffer.clear(10, 15);

// Clears the buffer from element 10 to the end
myBuffer.clear(10);