We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Works when the heap length is < 10 but fails with 10+
min_heap = ::Containers::Heap.new(10.times.map{Object.new}){|x, y| (x <=> y) == -1} while val = min_heap.pop do p val end
RuntimeError: Couldn't delete node from stored nodes hash