next method

void next(
  1. VT value
)

引数に渡した値を value に格納する。

Implementation

void next(VT value) {
    this.value = value;
    stream();
}