| 202 | inline infix fun <T> Box.down(next: Dict.Prop<T>): T? { |
| 203 | return this.find(next, this.downwards()).findFirst().orElseGet { null } |
| 204 | } |
| 205 | |
| 206 | inline infix fun <T> Box.both(next: Dict.Prop<T>): T? { |
| 207 | return this.find(next, this.both()).findFirst().orElseGet { null } |
| 208 | } |
no test coverage detected