BinaryHeap.acquire

Takes ownership of a store. After this, manipulating s may make the heap work incorrectly.

struct BinaryHeap(alias less = "a < b", Store)
void
acquire
(
Store s
,
size_t initialSize = size_t.max
)
if (
isRandomAccessRange!Store ||
isRandomAccessRange!(typeof(Store.init[]))
)

Meta