codac 1.5.6
Loading...
Searching...
No Matches
codac2_TypeInfo.h
Go to the documentation of this file.
1
9
10#pragma once
11
12namespace codac2
13{
14 template<typename T>
15 struct is_interval_based : std::false_type {};
16
17 template<typename T>
18 constexpr bool is_interval_based_v = is_interval_based<T>::value;
19
20 template<typename T>
21 struct is_ctc : std::false_type {};
22
23 template<typename T>
24 constexpr bool is_ctc_v = is_ctc<T>::value;
25
26 template<typename T>
27 struct is_sep : std::false_type {};
28
29 template<typename T>
30 constexpr bool is_sep_v = is_sep<T>::value;
31}