Registers a logic function with this logic instance.
(logicFn: LogicFn<any, TValue>)
| 99 | |
| 100 | /** Registers a logic function with this logic instance. */ |
| 101 | push(logicFn: LogicFn<any, TValue>) { |
| 102 | this.fns.push(wrapWithPredicates(this.predicates, logicFn)); |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Merges in the logic from another logic instance, subject to the predicates of both the other |
nothing calls this directly
no test coverage detected
searching dependent graphs…