Not

class Not<P : Position<P>>(val positionBasedFilter: PositionBasedFilter<P>) : PositionBasedFilter<P>

Negates the positionBasedFilter's test.

Type Parameters

P

the position type

Constructors

Link copied to clipboard
constructor(positionBasedFilter: PositionBasedFilter<P>)

Properties

Link copied to clipboard

the filter to be negated

Functions

Link copied to clipboard
open fun and(other: Predicate<in P?>?): Predicate<P?>?
Link copied to clipboard
open operator override fun contains(position: P): Boolean

Returns true if positionBasedFilter is not satisfied.

Link copied to clipboard
operator fun <P : Position<P>> PositionBasedFilter<*>.contains(position: P): Boolean

Enables the Kotlin in operator for PositionBasedFilter instances.

Link copied to clipboard
open operator override fun invoke(position: P): Boolean

Checks if the position is inside the shape.

Link copied to clipboard
open fun negate(): Predicate<P?>?
Link copied to clipboard
open fun or(other: Predicate<in P?>?): Predicate<P?>?
Link copied to clipboard
open override fun test(position: P): Boolean

Checks if the position is inside the shape.