Delaunay.HalfedgePriorityQueue.IsEmpty C# (CSharp) Method

IsEmpty() private method

private IsEmpty ( int bucket ) : bool
bucket int
return bool
        private bool IsEmpty(int bucket)
        {
            return (_hash[bucket].nextInPriorityQueue == null);
        }