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