void add(Function foo)

Source

void add(Function foo) {
  if (!_functions.contains(foo)) {
    _functions.add(foo);
  }
}