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