clear static method

void clear()

Removes all registered cleaner functions from the registry.

This method clears the entire registry, removing all registered cleaner functions. Use with caution as this will break any parser configurations that reference the removed cleaners.

Example:

// Clear all registered cleaners
CleanerRegistry.clear();

Implementation

static void clear() {
  _cleaners.clear();
}