2 references to Log2Arity
System.Collections (2)
System\Collections\Generic\PriorityQueue.cs (2)
677private static int GetParentIndex(int index) => (index - 1) >> Log2Arity; 682private static int GetFirstChildIndex(int index) => (index << Log2Arity) + 1;