Row

ArrayView.Row(r)

指定した行を返す。

ソース

Row(r) {
    var v = new ArrayView(this.ncol);
    for (var c = 0; c < this.ncol; c++) {
        v.dt[c] = this.dt[r * this.ncol + c];
    }

    return v;
}