16 writes to Length
Microsoft.Data.Analysis (16)
PrimitiveColumnContainer.cs (16)
97Length = length; 130Length++; 166Length += allocatable; 533ret.Length += buffer.Length; 559ret.Length += buffer.Length; 571ret.Length += buffer.Length; 590ret.Length += buffer.Length; 609ret.Length += buffer.Length; 628ret.Length += buffer.Length; 647ret.Length += buffer.Length; 666ret.Length += buffer.Length; 685ret.Length += buffer.Length; 704ret.Length += buffer.Length; 723ret.Length += buffer.Length; 742ret.Length += buffer.Length; 761ret.Length += buffer.Length;
20 references to Length
Microsoft.Data.Analysis (20)
PrimitiveColumnContainer.BinaryOperations.cs (2)
110var ret = new PrimitiveColumnContainer<bool>(Length, false); 152var ret = new PrimitiveColumnContainer<bool>(Length, false);
PrimitiveColumnContainer.cs (14)
108if (length < Length) 110AppendMany(default, length - Length); 129SetValidityBit(Length, value.HasValue); 268if (BitUtility.IsBitClear(curBitMap, index) && index < Length && NullCount > 0) 276if (BitUtility.IsBitSet(curBitMap, index) && index < Length) 281else if (index == Length) 309if ((ulong)index > (ulong)Length) 329if ((uint)index >= Length) 352if (rowIndex >= Length) 361if (Length == 0) 373long endIndex = Math.Min(Length, startIndex + length); 417for (long i = 0; i < Length; i++) 428for (int i = 0; i < Length; i++) 468PrimitiveColumnContainer<T> ret = new PrimitiveColumnContainer<T>(mapIndices.Length);
PrimitiveDataFrameColumn.cs (4)
30internal PrimitiveDataFrameColumn(string name, PrimitiveColumnContainer<T> columnContainer) : base(name, columnContainer.Length, typeof(T)) 38Length = _columnContainer.Length; 44Length = _columnContainer.Length; 286Length = _columnContainer.Length;