clear method

void clear()

Clears the dictionary.

Implementation

void clear() {
  _encodeMap.clear();
  _decodeMap.clear();
  _nextCode = 0;
}