Struct lrs::ops::Range

The type representing the bounded M..N syntax.

Syntax

struct Range<Idx> {
    start: Idx,
    end: Idx,
}

Fields

NameDescription
start

The left-hand-side of the operator.

end

The right-hand-side of the operator.

Trait implementations

NameDescription
Eq

Objects that implement the binary == and != operators.

Iterator (10 times)

Objects that can be iterated over.