4#ifndef TETL_TYPE_TRAITS_MAKE_SIGNED_HPP
5#define TETL_TYPE_TRAITS_MAKE_SIGNED_HPP
15struct make_signed<
signed char> {
16 using type =
signed char;
20struct make_signed<
signed short> {
21 using type =
signed short;
25struct make_signed<
signed int> {
26 using type =
signed int;
30struct make_signed<
signed long> {
31 using type =
signed long;
35struct make_signed<
signed long long> {
36 using type =
signed long long;
40struct make_signed<
unsigned char> {
41 using type =
signed char;
45struct make_signed<
unsigned short> {
46 using type =
signed short;
50struct make_signed<
unsigned int> {
51 using type =
signed int;
55struct make_signed<
unsigned long> {
56 using type =
signed long;
60struct make_signed<
unsigned long long> {
61 using type =
signed long long;
79template <
typename Type>
Definition adjacent_find.hpp:9
If T is an integral (except bool) or enumeration type, provides the member typedef type which is the ...
Definition make_signed.hpp:80