BinaryHeap.empty

Returns true if the heap is empty, false otherwise.

struct BinaryHeap(alias less = "a < b", Store)
@property scope const
bool
empty
()
if (
isRandomAccessRange!Store ||
isRandomAccessRange!(typeof(Store.init[]))
)

Meta