opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
output_extractor_data_type_traits.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace opyn
6{
7 template<OutputExtractorDataType>
9
10 template<>
12 static inline constexpr bool is_numeric = true;
13 };
14
15 template<>
17 static inline constexpr bool is_numeric = true;
18 };
19
20 template<>
22 static inline constexpr bool is_numeric = false;
23 };
24}
Definition component_registry.h:14
OutputExtractorDataType
Definition output_extractor_data_type.h:6
constexpr bool is_numeric(OutputExtractorDataType t)
Definition output_extractor_data_type_helpers.h:13
Definition output_extractor_data_type_traits.h:8