Grok 20.3.2
grk::HasGetIndex Concept Reference

Concept ensuring a type T has a getIndex() method returning an integral type. More...

#include <MinHeap.h>

Concept definition

template<typename T>
concept HasGetIndex = requires(T t) {
{ t.getIndex() } -> std::integral;
}
Concept ensuring a type T has a getIndex() method returning an integral type.
Definition MinHeap.h:107

Detailed Description

Concept ensuring a type T has a getIndex() method returning an integral type.