infix fun RequestPredicate.or(other: String): RequestPredicate
Return a composed request predicate that tests against both this predicate OR
the other predicate (String processed as a path predicate). When evaluating the
composed predicate, if this predicate is true, then the other predicate is not
evaluated.
See Also
infix fun String.or(other: RequestPredicate): RequestPredicate
Return a composed request predicate that tests against both this predicate (String
processed as a path predicate) OR the other predicate. When evaluating the
composed predicate, if this predicate is true, then the other predicate is not
evaluated.
See Also
infix fun RequestPredicate.or(other: RequestPredicate): RequestPredicate
Return a composed request predicate that tests against both this predicate OR
the other predicate. When evaluating the composed predicate, if this
predicate is true, then the other predicate is not evaluated.
See Also