isEmpty method

bool isEmpty()

Tests whether the index contains any items.

@return true if the index does not contain any items

Implementation

bool isEmpty() {
  return root.isEmpty();
}