(predicate: Predicate<In>)
| 842 | |
| 843 | /** |
| 844 | * A sink that returns whether all elements satisfy the specified predicate. |
| 845 | * |
| 846 | * **When to use** |
| 847 | * |
| 848 | * Use to reduce a stream to a boolean that is true only when every input |
| 849 | * satisfies a pure predicate. |
| 850 | * |
| 851 | * @see {@link some} for the dual any-match check |
| 852 | * |
no test coverage detected
searching dependent graphs…