plus

open operator fun plus(other: AnnotationSelector): AnnotationSelector(source)

Combines this selector with another selector.

Selectors are interpreted from left to right. Negative selectors only makes sense when present on the left side of standard selector. Example:

// it's equivalent of just named("example.b")
-all + named("example.a")

// it's equivalent of none, because `-all` removes everything from the right side.
named("example.a") - all