Visual Computing Library
Loading...
Searching...
No Matches
vcl::ElementConcept Concept Reference

Concept definition

template<typename T>
concept vcl::ElementConcept = requires (T&& obj) {
RemoveRef<T>::ELEMENT_ID;
typename RemoveRef<T>::Components;
typename RemoveRef<T>::ParentMeshType;
{ obj.index() } -> std::same_as<uint>;
}
Definition element.h:31