clearFunctionTable method

void clearFunctionTable({
  1. Iterable<A>? args,
})

Clears the cached function table.

To clear the function table for selected values only, provide a non-empty iterable args.

Implementation

void clearFunctionTable({Iterable<A>? args}) {
  if (args == null) {
    _functionTable.clear();
  } else {
    for (var key in args) {
      _functionTable.remove(key);
    }
  }
}