Visual Computing Library  devel
Loading...
Searching...
No Matches
vcl::mesh::HasEdgeContainer Concept Reference

A concept that checks whether a class has (inherits from) an EdgeContainer class. More...

#include <vclib/mesh/containers/edge_container.h>

Concept definition

template<typename T>
concept vcl::mesh::HasEdgeContainer = std::derived_from<
std::remove_cvref_t<T>,
EdgeContainer<typename RemoveRef<T>::EdgeType>>
A concept that checks whether a class has (inherits from) an EdgeContainer class.
Definition edge_container.h:1024

Detailed Description

A concept that checks whether a class has (inherits from) an EdgeContainer class.

The concept is satisfied when T is a class that instantiates or derives from a EdgeContainer class having any Edge element type.

Template Parameters
TThe type to be tested for conformity to the HasEdgeContainer.