clear method

MemorySystem clear()

Removes all memory records from the memory system.

Implementation

MemorySystem clear() {
	records.length = 0;
	recordsMap.clear();

	return this;
}