-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.hpp
executable file
·104 lines (81 loc) · 3.17 KB
/
utils.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yismaili <yismaili@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/02 13:37:43 by yismaili #+# #+# */
/* Updated: 2023/03/13 18:55:25 by yismaili ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef UTILS_HPP
# define UTILS_HPP
#include <iostream>
namespace ft{
// struct template is a type trait that can be used to conditionally enable or
//disable function templates or class templates based on a compile-time condition
//template parameter B is true. In this case, the enable_if struct template defines a
//public member type named "type" that is an alias for the second template parameter T.
template <bool B, class T = void >
struct enable_if{};
template <class T>
struct enable_if<true, T> {
typedef T type;
};
// // compare the types
// template <class T, class U>
// struct cmp {
// static const bool value = false;
// };
// template <class T>
// struct cmp <T, T> {
// static const bool value = true;
// };
// integral types
// declare a primary template for the is_integral type trait, the type T is not
// an integral type
template <class T>
struct is_integral {
static const bool value = false;
};
//keyword is used to define a type trait
//provides a specific implementation of the is_integral template
template <> struct is_integral<char> {
static const bool value = true;
};
template <> struct is_integral<signed char> {
static const bool value = true;
};
template <> struct is_integral<unsigned char> {
static const bool value = true;
};
template <> struct is_integral<short> {
static const bool value = true;
};
template <> struct is_integral<unsigned short> {
static const bool value = true;
};
template <> struct is_integral<int> {
static const bool value = true;
};
template <> struct is_integral<unsigned int> {
static const bool value = true;
};
template <> struct is_integral<long> {
static const bool value = true;
};
template <> struct is_integral<unsigned long> {
static const bool value = true;
};
template <> struct is_integral<long long> {
static const bool value = true;
};
template <> struct is_integral<unsigned long long> {
static const bool value = true;
};
template <> struct is_integral<bool> {
static const bool value = true;
};
}
#endif