YearMonthRange class

A range of YearMonth with inheritance from SetBase

Inheritance
Available Extensions

Constructors

YearMonthRange(YearMonth from, YearMonth to)
Generate Set with all YearMonth between from and to
YearMonthRange.emptySet()
Generate Set with absolutly nothing inside

Properties

first YearMonth
The first element.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isEmpty bool
Whether this collection has no elements.
no setterinherited
isNotEmpty bool
Whether this collection has at least one element.
no setterinherited
iterator Iterator<YearMonth>
An iterator that iterates over the elements of this set.
no setteroverride
last YearMonth
The last element.
no setterinherited
length int
The number of elements in this.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
single YearMonth
Checks that this iterable has only one element, and returns that element.
no setterinherited

Methods

add(YearMonth value) bool
Adds value to the set.
override
addAll(Iterable<YearMonth> elements) → void
Adds all elements to this set.
inherited
any(bool test(YearMonth element)) bool
Checks whether any element of this iterable satisfies test.
inherited
cast<R>() Set<R>
Provides a view of this set as a set of R instances.
inherited
clear() → void
Removes all elements from the set.
inherited
contains(Object? element) bool
Whether value is in the set.
override
containsAll(Iterable<Object?> other) bool
Whether this set contains all the elements of other.
inherited
difference(Set<Object?> other) Set<YearMonth>
Creates a new set with the elements of this that are not in other.
inherited
elementAt(int index) YearMonth
Returns the indexth element.
inherited
every(bool f(YearMonth element)) bool
Checks whether every element of this iterable satisfies test.
inherited
expand<T>(Iterable<T> f(YearMonth element)) Iterable<T>
Expands each element of this Iterable into zero or more elements.
inherited
firstWhere(bool test(YearMonth value), {YearMonth orElse()?}) YearMonth
The first element that satisfies the given predicate test.
inherited
fold<T>(T initialValue, T combine(T previousValue, YearMonth element)) → T
Reduces a collection to a single value by iteratively combining each element of the collection with an existing value
inherited
followedBy(Iterable<YearMonth> other) Iterable<YearMonth>
Creates the lazy concatenation of this iterable and other.
inherited
forEach(void f(YearMonth element)) → void
Invokes action on each element of this iterable in iteration order.
inherited
indexWhere(YearMonth element, [int start = 0]) int
Get element's index in this set
intersection(Set<Object?> other) Set<YearMonth>
Creates a new set which is the intersection between this set and other.
inherited
join([String separator = ""]) String
Converts each element to a String and concatenates the strings.
inherited
lastWhere(bool test(YearMonth value), {YearMonth orElse()?}) YearMonth
The last element that satisfies the given predicate test.
inherited
lookup(Object? element) YearMonth?
If an object equal to object is in the set, return it.
override
map<T>(T f(YearMonth element)) Iterable<T>
The current elements of this iterable modified by toElement.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reduce(YearMonth combine(YearMonth value, YearMonth element)) YearMonth
Reduces a collection to a single value by iteratively combining elements of the collection using the provided function.
inherited
remove(Object? value) bool
Removes value from the set.
override
removeAll(Iterable<Object?> elements) → void
Removes each element of elements from this set.
inherited
removeWhere(bool test(YearMonth element)) → void
Removes all elements of this set that satisfy test.
inherited
retainAll(Iterable<Object?> elements) → void
Removes all elements of this set that are not elements in elements.
inherited
retainWhere(bool test(YearMonth element)) → void
Removes all elements of this set that fail to satisfy test.
inherited
singleWhere(bool test(YearMonth value), {YearMonth orElse()?}) YearMonth
The single element that satisfies test.
inherited
skip(int n) Iterable<YearMonth>
Creates an Iterable that provides all but the first count elements.
inherited
skipWhile(bool test(YearMonth value)) Iterable<YearMonth>
Creates an Iterable that skips leading elements while test is satisfied.
inherited
take(int n) Iterable<YearMonth>
Creates a lazy iterable of the count first elements of this iterable.
inherited
takeWhile(bool test(YearMonth value)) Iterable<YearMonth>
Creates a lazy iterable of the leading elements satisfying test.
inherited
toList({bool growable = false}) List<YearMonth>
toList with orded by the ascending YearMonth value
override
toSet() Set<YearMonth>
Creates a Set with the same elements and behavior as this Set.
override
toString() String
A string representation of this object.
inherited
union(Set<YearMonth> other) Set<YearMonth>
Creates a new set which contains all the elements of this set and other.
inherited
where(bool f(YearMonth element)) Iterable<YearMonth>
Creates a new lazy Iterable with all elements that satisfy the predicate test.
inherited
whereType<T>() Iterable<T>
Creates a new lazy Iterable with all elements that have type T.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited