next method
void
next(
- VT value
引数に渡した値を value に格納する。
Implementation
void next(VT value) {
this.value = value;
stream();
}
引数に渡した値を value に格納する。
void next(VT value) {
this.value = value;
stream();
}