Contents

<(_:_:)

Returns a Boolean that indicates whether the first demand requests fewer elements than the second.

Declaration

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

Discussion

If both sides are .unlimited, the result is always false. If lhs is .unlimited, then the result is always false. If rhs is .unlimited then the result is always true. Otherwise, this operator compares the demands’ max values.

See Also

Comparing demands