RangeCondition

Represents a composite condition that evaluates whether a Version falls within a specific range defined by a LowerBoundCondition and an UpperBoundCondition.

Constructors

Link copied to clipboard
constructor(start: LowerBoundCondition, end: UpperBoundCondition)

Properties

Link copied to clipboard

The condition representing the upper bound of the range.

Link copied to clipboard

The condition representing the lower bound of the range.

Functions

Link copied to clipboard
open override fun isSatisfiedBy(version: Version): Boolean

Evaluates whether the specified Version satisfies the condition defined by the implementation.