2 writes to
Microsoft.Data.Analysis (2)
PrimitiveDataFrameColumn.cs (2)
241_columnContainer[rowIndex] = (T?)value; 252set => _columnContainer[rowIndex] = value;
6 references to
Microsoft.Data.Analysis (6)
PrimitiveColumnContainer.cs (4)
376ret.Add(this[i]); 419yield return this[i]; 430T? value = this[i]; 433sb.Append(this[i]).Append(" ");
PrimitiveDataFrameColumn.cs (2)
233protected T? GetTypedValue(long rowIndex) => _columnContainer[rowIndex]; 522var value = _columnContainer[curRow];