ATLAS Offline Software
Loading...
Searching...
No Matches
SG::IsAuxElement Concept Reference

Test if T is compatible with AuxElement. More...

#include <AuxElementConcepts.h>

Concept definition

template<class T>
concept SG::IsAuxElement =
requires (T& elt)
{
{ elt } -> std::convertible_to<IAuxElement&>;
{ elt.container() } -> std::convertible_to<AuxVectorData*>;
}
Test if T is compatible with AuxElement.

Detailed Description

Test if T is compatible with AuxElement.

Definition at line 44 of file AuxElementConcepts.h.