makeEmpty method

Cell makeEmpty()

Removes all entries from this cell.

Implementation

Cell makeEmpty() {
	entries.length = 0;
	return this;
}