-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathfunctional.hpp
129 lines (105 loc) · 3.15 KB
/
functional.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Copyright (c) 2019-2020 Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/sequences/
#ifndef TAO_SEQ_FUNCTIONAL_HPP
#define TAO_SEQ_FUNCTIONAL_HPP
#include <type_traits>
namespace tao
{
namespace sequence
{
namespace op
{
struct plus
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A + B >;
};
struct minus
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A - B >;
};
struct multiplies
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A * B >;
};
struct divides
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A / B >;
};
struct modulus
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A % B >;
};
struct equal_to
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, A == B >;
};
struct not_equal_to
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, A != B >;
};
struct greater
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, ( A > B ) >;
};
struct less
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, ( A < B ) >;
};
struct greater_equal
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, ( A >= B ) >;
};
struct less_equal
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, ( A <= B ) >;
};
struct logical_and
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, A && B >;
};
struct logical_or
{
template< typename T, T A, T B >
using apply = std::integral_constant< bool, A || B >;
};
struct bit_and
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A & B >;
};
struct bit_or
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A | B >;
};
struct bit_xor
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, A ^ B >;
};
struct min
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, ( A < B ) ? A : B >;
};
struct max
{
template< typename T, T A, T B >
using apply = std::integral_constant< T, ( A > B ) ? A : B >;
};
} // namespace op
} // namespace sequence
} // namespace tao
#endif