Returns a composed Predicate that represents a short-circuiting logical OR of this Predicate and other.
other
Predicate<T> or(Predicate<T> other) => (value) => this(value) || other(value);