Min<T extends Comparable<Object?> > class
final
A Min represents a convex (contiguous) portion of a domain bounded on the lower end, i.e. { x | value < x }.
T is expected to be immutable. If T is mutable, the value produced by Comparable.compare must not change when
used in a Min. Doing so will result in undefined behaviour.
- Inheritance
-
- Object
- Range<
T> - IterableRange<
T> - Min
Constructors
- Min.closed(T value)
-
Creates a Min with the closed lower bound.
const
- Min.open(T value)
-
Creates a Min with the open lower bound.
const
Properties
- closed → bool
-
Whether the lower bound is closed.
no setter
- empty → bool
-
Return
trueif this is empty, i.e.[a..a).no setteroverride - hashCode → int
-
The hash code for this object.
no setteroverride
- open → bool
-
Whether the lower bound is open.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → T
-
The minimum value.
final
Methods
-
besides(
Range< T> other) → bool -
Returns
trueif an empty range exists between this andother.override -
contains(
T value) → bool -
Returns
trueif this containsvalue.override -
containsAll(
Iterable< T> values) → bool -
Returns
trueif this contains allvalues.inherited -
encloses(
Range< T> other) → bool -
Returns
trueifother's bounds do not extend outside this bounds.override -
gap(
Range< T> other) → Interval<T> ? -
If this does not intersect
other, returns the gap in between. Otherwise returnsnull.override -
intersection(
Range< T> other) → Range<T> ? -
If this intersects
other, returns the intersection. Otherwise returnsnull.override -
intersects(
Range< T> other) → bool -
Returns
trueif a non-empty range exists between this andother.override -
iterate(
{required T by(T current)}) → Iterable< T> -
Returns a lazy
Iterableby stepping through this range usingby.override -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override