enumerable4j icon indicating copy to clipboard operation
enumerable4j copied to clipboard

Refactoring: add logical OR for Joined

Open dykov opened this issue 4 years ago • 0 comments

Now Joined is a compound predicate that represents a short-circuiting logical AND of all given predicates. We need some method/inner class for logical OR.

I suggest using static classes:

new Joined.And( ... );
new Joined.Or( ... );

dykov avatar May 31 '21 16:05 dykov