1 write to _row
Microsoft.ML.Data (1)
DataView\TypedCursor.cs (1)
573public RowImplementation(TypedRow row) => _row = row;
9 references to _row
Microsoft.ML.Data (9)
DataView\TypedCursor.cs (9)
569_row.Dispose(); 575public long Position => _row.Position; 576public long Batch => _row.Batch; 577public DataViewSchema Schema => _row.Schema; 578public void FillValues(TRow row) => _row.FillValues(row); 580=> _row.GetGetter<TValue>(column); 582public ValueGetter<DataViewRowId> GetIdGetter() => _row.GetIdGetter(); 583public bool IsColumnActive(int col) => _row.IsColumnActive(_row.Schema[col]);