/// <summary> /// Used internally and for testing. Use `new ObjectAddressSet(heap)` instead. /// </summary> public ObjectAddressSet(HeapIndex index) { this.index = index; segmentBitsets = index.CreateSegmentTable(s => new BitArray(s)); }
public ObjectAddressSet(ClrHeap heap) : this(HeapIndex.Create(heap)) { }