Adds an input to the explanation of the current node, if a condition holds.
(String term, @Nullable Object value, boolean condition)
| 70 | * holds. |
| 71 | */ |
| 72 | default RelWriter itemIf(String term, @Nullable Object value, boolean condition) { |
| 73 | return condition ? item(term, value) : this; |
| 74 | } |
| 75 |
no outgoing calls
no test coverage detected