5 references to ReadOnlyDataFrameBuffer
Microsoft.Data.Analysis (5)
DataFrameColumns\ArrowStringDataFrameColumn.cs (3)
49
ReadOnlyDataFrameBuffer<byte> dataBuffer = new
ReadOnlyDataFrameBuffer
<byte>(values, values.Length);
50
ReadOnlyDataFrameBuffer<int> offsetBuffer = new
ReadOnlyDataFrameBuffer
<int>(offsets, length + 1);
51
ReadOnlyDataFrameBuffer<byte> nullBitMapBuffer = new
ReadOnlyDataFrameBuffer
<byte>(nullBits, nullBits.Length);
PrimitiveColumnContainer.cs (2)
58
dataBuffer = new
ReadOnlyDataFrameBuffer
<T>(buffer, length);
94
nullDataFrameBuffer = new
ReadOnlyDataFrameBuffer
<byte>(nullBitMap, bitMapBufferLength);