iter method
Implementation
Iterable<T> iter() sync* {
switch (this) {
case Some(value: T value): yield value;
case None(): return;
}
}
Iterable<T> iter() sync* {
switch (this) {
case Some(value: T value): yield value;
case None(): return;
}
}