(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
imports/
std11069container.d
module imports.std11069container;

import imports.std11069range, imports.std11069typecons;

struct BinaryHeap(Store)
if (isInputRange!Store)
//if (isRandomAccessRange!Store)
{
    // The payload includes the support store and the effective length
    private RefCounted!(Tuple!(Store)) _payload;
}