andreoss
andreoss
The following error occurs when 0pdd status is requests for https://github.com/llorllale/cactoos-matchers via this link http://www.0pdd.com/p?name=llorllale/cactoos-matchers ``` Internal error at 0.30.21 Please help us improve our service and submit the following...
- Add `toString` - Add `equals` and `hashCode`
`Joined` has two constructors with the same erasure. ``` Joined(final Iterable
It seems that only `Iterator` implementations are necessary, and `Iterable` ones can be avoided. Proposal: Replace all of `Iterable` implementations for primitive wrappers (added via #748) with a generic `IterableOfArray`...
It seems that a higher rate of reuse is possible between `Scalar` and `Iterable` decorators if there's a clear way to convert one to another. Proposal: Let's introduce - `IterableOfScalar(Scalar)`...
We can annotate disabled methods which throw `UnsupportedOperationException` (i.e mutation methods on `Collection`) in order to provide an extra clue for static analyzers and IDEs about them.
Is it possible to have a smart class for Text which realizes concept of printer? https://www.yegor256.com/2016/04/05/printers-instead-of-getters.html ```java final class Print implements Text { private final Text text; public Print(final Text...
As discussed here #1387, `set.Diff` is required in order to implement `map.Diff`. For consistency at least 3 objects can be introduced - `Diff` - `Intersection` - `Union` (which is not...
Per https://github.com/yegor256/cactoos/issues/1503 - Move `Behaves*` classes from cactoos
https://github.com/llorllale/cactoos-matchers/blob/master/src/main/java/org/llorllale/cactoos/matchers/HasValue.java#L53 `HasValue` should call `value` only once.