cyclops
cyclops copied to clipboard
An advanced, but easy to use, platform for writing functional applications in Java 8.
`@Override public boolean fromStream(final Stream stream) { stream.collect(Collectors.toCollection(() -> distributor)); return true; }` mekaes me think that topic collects the whole input stream.
I expected Validated to have an ap method or something, but I can't seem to find it. The only docs I can see are https://github.com/aol/cyclops/wiki/Validator, which clearly isn't the current...
NonEmptyChain will perform better than NonEmptyList. This is a non-backwards compatible change and should be made in Cyclops 11.
Some operations (originally for performance reasons) such as remove / removeAll are always eager. These should respect whatever mode the extended collection is operating in.
The website http://cyclops-react.io is currently not reachable.   Could you have a look? Thanks
**Is your feature request related to a problem? Please describe.** Remove methods deprecated by #1070. A backwards compatibility breaking change. **Describe the solution you'd like** Remove deprecated methods.
Hi, I started modularizing a project in which we use cyclops and cyclops-pure extensively. First problem I experienced is that cyclops.data is found in both cyclops and cyclops-pure which results...
Suppose this example of code: aStream.foreach(object -> consumeObjectMayThrowCheckedException()) This will not compile because of the checked exception. I think that the state of art, in functional programming, is to process...
Related to #923 flatMap should be type specific. Iterable and Publisher are core types and have flatMap like operators via concatMap and mergeMap Methods (at least of most of them...