2 writes to _values
Microsoft.ML.DataView (2)
VBuffer.cs (2)
122_values = values; 167_values = values;
16 references to _values
Microsoft.ML.DataView (16)
VBuffer.cs (16)
65public ReadOnlySpan<T> GetValues() => _values.AsSpan(0, _count); 184_values.AsSpan(0, Length).CopyTo(editor.Values); 200_values.AsSpan(0, Length).CopyTo(editor.Values); 209_values.AsSpan(0, _count).CopyTo(editor.Values); 233_values.AsSpan(sourceIndex, length).CopyTo(editor.Values); 250_values.AsSpan(copyMin, copyCount).CopyTo(editor.Values); 294_values.AsSpan(0, Length).CopyTo(destination.Slice(destinationIndex)); 312destination[destinationIndex + iv++] = _values[islot]; 344return Items(_values, _indices, Length, _count, all); 352return DenseValues(_values, _indices, Length, _count); 379destination = _values[index]; 381destination = _values[bufferIndex]; 398return _values[index]; 400return _values[bufferIndex]; 412return _values.GetEnumerator(); 437T[] values = _values;