(Dict.Prop<T> find, Function<Box, Collection<Box>> direction)
| 186 | protected Deque<Box> _all() { |
| 187 | return all; |
| 188 | } |
| 189 | |
| 190 | @HiddenInAutocomplete |
| 191 | public <T> Stream<T> has(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 |
no test coverage detected