Visual Computing Library
All Classes Functions Variables Typedefs Enumerations Friends Modules Pages Concepts
vcl::comp::IsVerticalComponent Concept Reference

Evaluates to true if the type T is a component that is stored vertically in its element container. More...

#include <vclib/concepts/mesh/components/component.h>

Concept definition

template<typename T>
ComponentConcept<T> && RemoveRef<T>::IS_VERTICAL == true && requires {
typename RemoveRef<T>::DataValueType;
{ RemoveRef<T>::IS_VERTICAL } -> std::same_as<const bool&>;
}
The ComponentConcept is evaluated to true whenever the type T is a valid component,...
Definition component.h:44
Evaluates to true if the type T is a component that is stored vertically in its element container.
Definition component.h:57

Detailed Description

Evaluates to true if the type T is a component that is stored vertically in its element container.

Template Parameters
TThe type to be evaluated.