cyclops icon indicating copy to clipboard operation
cyclops copied to clipboard

An advanced, but easy to use, platform for writing functional applications in Java 8.

Results 29 cyclops issues
Sort by recently updated
recently updated
newest added

`@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. ![Screenshot_20191104-111800](https://user-images.githubusercontent.com/13085980/68113901-18524c00-fef5-11e9-8932-3488b2240294.png) ![Screenshot_20191104-111840](https://user-images.githubusercontent.com/13085980/68113903-18524c00-fef5-11e9-9e74-28f37d8503ff.png) 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.

breaking-change

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...

question

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...