Midge  v3.9.2
Data Processing Framework
typeint.hh
Go to the documentation of this file.
1 #ifndef _midge_typeint_hh_
2 #define _midge_typeint_hh_
3 
4 #include <type_traits>
5 
6 namespace midge
7 {
9  template< int x_value > using type_int = std::integral_constant< int, x_value >;
10 }
11 
12 #endif
Definition: _buffer.hh:11
std::integral_constant< int, x_value > type_int
Wraps integral constant x_value in a type; value is available as type_int::value. ...
Definition: typeint.hh:9