Yurii Dubynka
Yurii Dubynka
```java public boolean any(Predicate first, Predicate ... other); public boolean all(Predicate first, Predicate ... other); public Enumerable select(Predicate first, Predicate ... other); ```
```java public final class Joined implements Predicate { public Joined(Predicate first, Predicate ... other) { ... } ... } ```
Actual result: ```java default Enumerable after(Predicate prd, long size) { final Enumerable out; if (size < 0) { throw new IllegalArgumentException(Long.toString(size)); } else if (size == 0) { out =...
https://github.com/eclipse/eclipse-collections
Implementation for #239
Add to the predefined services (like rultor, pdd) : - Sonarqube - Codebeat.
**Affects PMD Version:** 6.44.0 **Rule:** AtLeastOneConstructor Please provide the rule name and a link to the rule documentation: https://pmd.github.io/latest/pmd_rules_java_codestyle.html#atleastoneconstructor **Description:** **Code Sample demonstrating the issue:** - [ ] Case 1:...
**Affects PMD Version:** 6.44.0 **Rule:** LooseCouplingRule Please provide the rule name and a link to the rule documentation: https://pmd.github.io/latest/pmd_rules_java_bestpractices.html#loosecoupling **Description:** **Code Sample demonstrating the issue:** ```java public class TheClass {...