(predicate: Predicate<In>)
| 1765 | |
| 1766 | /** @internal */ |
| 1767 | export const some = <In>(predicate: Predicate<In>): Sink.Sink<boolean, In, In> => |
| 1768 | fold(false, (bool) => !bool, (acc, input) => acc || predicate(input)) |
| 1769 | |
| 1770 | /** @internal */ |
| 1771 | export const splitWhere = dual< |
no test coverage detected