Contents

>=(_:_:)

Returns a Boolean that indicates a given number of elements is greater than or equal to the maximum specified by the demand.

Declaration

static func >= (lhs: Int, rhs: Subscribers.Demand) -> Bool

Discussion

If rhs is .unlimited, then the result is always false. Otherwise, the operator compares the demand’s max value to lhs.

See Also

Comparing demands