shift
shift
C# implementation does not compute groupBy right away, instead it builds IEnummerables and calculates the groups contents on demand. Its highly desirable to have a somewhat equivalent implemented
Javadoc is not yet available online. Add it to a folder in gh-pages: zbra-solutions.gitub.io/android-linq/JavaDoc/v1.0.X/ zbra-solutions.gitub.io/android-linq/JavaDoc/v1.1.X/ And so on... Also: - add Wiki page listing versions and links to their javadocs...
Add some pitfalls like - running the same stream multiple times (positive and negative uses) - aggregating strings without StringBuilder - more to be added as we find them
A shorthand for when you just want aggregate the T instead of aggregating T to another type ``` Stream aggregate(Aggregator aggregator); ```
Create test method that validate Iterable() custom implementations compliance to the contract. - test calling next() past the last element raise NoSuchElementException - test its possible to iterate without calling...
Most operations are implemented based on the deferred execution paradigm. Tests of such operations should validate that principle, if possible.
Hey guys! Im having this issue when I try to add the lib to my AppExtension via cocoapods. ``` NBMaterialDialog.swift Warning:(220, 67) use of string literal for Objective-C selectors is...
I see you have a Swift 3 version, but it is not published on CocoaPods. Any reasons why?
GraphQL Websocket Plugin hangs and does not retry connection when server closes connection right after a successful 101 Upgrade. On my scenario this manifests itself as the client try to...