ecs
Loading...
Searching...
No Matches
includes
Concepts.hpp
Go to the documentation of this file.
1
8
#pragma once
9
10
#include <tuple>
11
#include <concepts>
12
18
template
<
typename
T>
19
struct
is_tuple
: std::false_type {};
20
21
template
<
typename
... Args>
22
struct
is_tuple
<std::tuple<Args...>> : std::true_type {};
23
24
template
<
typename
T>
25
concept
IsTuple
=
is_tuple<T>::value
;
IsTuple
Definition
Concepts.hpp:25
is_tuple
Definition
Concepts.hpp:19
Generated by
1.9.8