LiteFX 0.4.1.2025
Computer Graphics Engine
Loading...
Searching...
No Matches
LiteFX::meta::are_same Concept Reference

Checks if a set of types are all equal to the type T . More...

#include <traits.hpp>

Concept definition

template<typename T, typename... Ts>
concept LiteFX::meta::are_same = std::conjunction_v<std::is_same<T, Ts>...>
Checks if a set of types are all equal to the type T .
Definition traits.hpp:126

Detailed Description

Checks if a set of types are all equal to the type T .

Template Parameters
TThe type to check against.
TsThe types to check.