GraphLib
Bearbeitung der Aufgabe Mini Graph Library für OOP WiSe 2023/24
Loading...
Searching...
No Matches
GraphLib::Internal::valid_graph_type Concept Reference

Checks if a type derives from Graph<D, I, E>. More...

#include <concepts.h>

Concept definition

template<typename G>
std::derived_from<G, Graph<typename G::data_type, typename G::id_type, typename G::edge_type>>
Checks if a type provides the core type aliases (data_type, id_type, edge_type).
Definition concepts.h:135
Checks if a type derives from Graph<D, I, E>.
Definition concepts.h:147

Detailed Description

Checks if a type derives from Graph<D, I, E>.

Template Parameters
GGraph type.

Definition at line 147 of file concepts.h.