AnyOf

data class AnyOf(val statuses: Set<Status>) : StatusMatcher(source)

Matches against any status contained in statuses.

Constructors

Link copied to clipboard
constructor(statuses: Set<Status>)

Properties

Link copied to clipboard

Set of statuses that match this predicate.

Functions

Link copied to clipboard
open operator override fun invoke(p1: Status): Boolean

Evaluates whether p1 is present inside statuses.