(Dict.Prop<T> find, Function<Box, Collection<Box>> direction)
| 192 | return breadthFirst(direction).map(x -> x.properties.get(find)) |
| 193 | .filter(x -> x != null); |
| 194 | } |
| 195 | |
| 196 | @HiddenInAutocomplete |
| 197 | public <T> Stream<Box> whereHas(Dict.Prop<T> find, Function<Box, Collection<Box>> direction) { |
| 198 | return breadthFirst(direction).filter(x -> x.properties.has(find)); |
| 199 | } |
| 200 |
no test coverage detected