Adds a builtin to this database. The function must not already exist.
(Function fn)
| 456 | * Adds a builtin to this database. The function must not already exist. |
| 457 | */ |
| 458 | public void addBuiltin(Function fn) { |
| 459 | Preconditions.checkState(isSystemDb()); |
| 460 | Preconditions.checkState(fn != null); |
| 461 | Preconditions.checkState(getFunction(fn, Function.CompareMode.IS_IDENTICAL) == null); |
| 462 | addFunction(fn, false); |
| 463 | } |
| 464 | |
| 465 | /** |
| 466 | * Returns a map of functionNames to list of (overloaded) functions with that name. |
no test coverage detected