iterable property
Iterable<T>
get
iterable
Implementation
Iterable<T> get iterable sync* {
var item = this;
while (true) {
yield item;
item = item.next;
}
}
Iterable<T> get iterable sync* {
var item = this;
while (true) {
yield item;
item = item.next;
}
}