2 writes to _valueBoundaries
Microsoft.ML.Data (2)
DataView\CacheDataView.cs (2)
1373Utils.EnsureSize(ref _valueBoundaries, rowCount + 1); 1414Array.Resize(ref _valueBoundaries, _rowCount + 1);
7 references to _valueBoundaries
Microsoft.ML.Data (7)
DataView\CacheDataView.cs (7)
1375_valueBoundaries[rowCount] = _values.Length; 1389Ctx.Assert((idx + 1) < Utils.Size(_valueBoundaries)); 1394Ctx.Assert(_valueBoundaries[idx + 1] - _valueBoundaries[idx] <= int.MaxValue); 1395int valueCount = (int)(_valueBoundaries[idx + 1] - _valueBoundaries[idx]); 1403_values.CopyTo(_valueBoundaries[idx], editor.Values, valueCount);