2
2
//
3
3
// algorithm.h: Rcpp R/C++ interface class library -- data frames
4
4
//
5
- // Copyright (C) 2016 - 2017 Daniel C. Dillon
5
+ // Copyright (C) 2016 - 2024 Daniel C. Dillon
6
+ // Copyright (C) 2025 Daniel C. Dillon and Iñaki Ucar
6
7
//
7
8
// This file is part of Rcpp.
8
9
//
22
23
#ifndef Rcpp__Algorithm_h
23
24
#define Rcpp__Algorithm_h
24
25
25
- #if __cplusplus >= 201103L || __INTEL_CXX11_MODE__ == 1
26
- # define RCPP_CONSTEXPR_FUNC constexpr
27
- # define RCPP_CONSTEXPR_VAR constexpr
28
- #else
29
- # define RCPP_CONSTEXPR_FUNC
30
- # define RCPP_CONSTEXPR_VAR const
31
- #endif
32
-
33
26
namespace Rcpp {
34
27
namespace algorithm {
35
28
@@ -38,9 +31,7 @@ namespace helpers {
38
31
typedef struct {char a[2 ];} CTYPE_SHORT;
39
32
typedef struct {char a[3 ];} CTYPE_INT;
40
33
typedef struct {char a[4 ];} CTYPE_LONG;
41
- #ifdef RCPP_HAS_LONG_LONG_TYPES
42
34
typedef struct {char a[5 ];} CTYPE_LONG_LONG;
43
- #endif
44
35
typedef struct {char a[6 ];} CTYPE_FLOAT;
45
36
typedef struct {char a[7 ];} CTYPE_DOUBLE;
46
37
typedef struct {char a[8 ];} CTYPE_LONG_DOUBLE;
@@ -49,9 +40,7 @@ namespace helpers {
49
40
typedef struct {char a[11 ];} CTYPE_UNSIGNED_SHORT;
50
41
typedef struct {char a[12 ];} CTYPE_UNSIGNED_INT;
51
42
typedef struct {char a[13 ];} CTYPE_UNSIGNED_LONG;
52
- #ifdef RCPP_HAS_LONG_LONG_TYPES
53
43
typedef struct {char a[14 ];} CTYPE_UNSIGNED_LONG_LONG;
54
- #endif
55
44
typedef struct {char a[128 ];} CTYPE_UNKNOWN;
56
45
57
46
template < std::size_t I >
@@ -69,10 +58,8 @@ namespace helpers {
69
58
template <>
70
59
struct ctype_helper < sizeof (CTYPE_LONG) > { typedef long type; static const bool value = true ; };
71
60
72
- #ifdef RCPP_HAS_LONG_LONG_TYPES
73
61
template <>
74
62
struct ctype_helper < sizeof (CTYPE_LONG_LONG) > { typedef rcpp_long_long_type type; static const bool value = true ; };
75
- #endif
76
63
77
64
template <>
78
65
struct ctype_helper < sizeof (CTYPE_FLOAT) > { typedef float type; static const bool value = true ; };
@@ -98,11 +85,8 @@ namespace helpers {
98
85
template <>
99
86
struct ctype_helper < sizeof (CTYPE_UNSIGNED_LONG) > { typedef unsigned long type; static const bool value = true ; };
100
87
101
- #ifdef RCPP_HAS_LONG_LONG_TYPES
102
88
template <>
103
89
struct ctype_helper < sizeof (CTYPE_UNSIGNED_LONG_LONG) > { typedef rcpp_ulong_long_type type; static const bool value = true ; };
104
- #endif
105
-
106
90
107
91
template < typename T >
108
92
struct ctype
@@ -111,9 +95,7 @@ namespace helpers {
111
95
static CTYPE_SHORT test (const short &);
112
96
static CTYPE_INT test (const int &);
113
97
static CTYPE_LONG test (const long &);
114
- #ifdef RCPP_HAS_LONG_LONG_TYPES
115
98
static CTYPE_LONG_LONG test (const rcpp_long_long_type &);
116
- #endif
117
99
static CTYPE_FLOAT test (const float &);
118
100
static CTYPE_DOUBLE test (const double &);
119
101
static CTYPE_LONG_DOUBLE test (const long double &);
@@ -122,9 +104,7 @@ namespace helpers {
122
104
static CTYPE_UNSIGNED_SHORT test (const unsigned short &);
123
105
static CTYPE_UNSIGNED_INT test (const unsigned int &);
124
106
static CTYPE_UNSIGNED_LONG test (const unsigned long &);
125
- #ifdef RCPP_HAS_LONG_LONG_TYPES
126
107
static CTYPE_UNSIGNED_LONG_LONG test (const rcpp_ulong_long_type &);
127
- #endif
128
108
static CTYPE_UNKNOWN test (...);
129
109
130
110
static T make ();
@@ -139,9 +119,7 @@ namespace helpers {
139
119
static CTYPE_SHORT test (const short &);
140
120
static CTYPE_INT test (const int &);
141
121
static CTYPE_LONG test (const long &);
142
- #ifdef RCPP_HAS_LONG_LONG_TYPES
143
122
static CTYPE_LONG_LONG test (const rcpp_long_long_type &);
144
- #endif
145
123
static CTYPE_FLOAT test (const float &);
146
124
static CTYPE_DOUBLE test (const double &);
147
125
static CTYPE_LONG_DOUBLE test (const long double &);
@@ -150,9 +128,7 @@ namespace helpers {
150
128
static CTYPE_UNSIGNED_SHORT test (const unsigned short &);
151
129
static CTYPE_UNSIGNED_INT test (const unsigned int &);
152
130
static CTYPE_UNSIGNED_LONG test (const unsigned long &);
153
- #ifdef RCPP_HAS_LONG_LONG_TYPES
154
131
static CTYPE_UNSIGNED_LONG_LONG test (const rcpp_ulong_long_type &);
155
- #endif
156
132
static CTYPE_UNKNOWN test (...);
157
133
158
134
static T make ();
@@ -167,29 +143,29 @@ namespace helpers {
167
143
template <>
168
144
struct rtype_helper < double > {
169
145
typedef double type;
170
- static RCPP_CONSTEXPR_VAR int RTYPE = REALSXP;
146
+ static constexpr int RTYPE = REALSXP;
171
147
static inline double NA () { return NA_REAL; }
172
- static inline RCPP_CONSTEXPR_FUNC double ZERO () { return 0.0 ; }
173
- static inline RCPP_CONSTEXPR_FUNC double ONE () { return 1.0 ; }
148
+ static inline constexpr double ZERO () { return 0.0 ; }
149
+ static inline constexpr double ONE () { return 1.0 ; }
174
150
};
175
151
176
152
template <>
177
153
struct rtype_helper < int > {
178
154
typedef int type;
179
- static RCPP_CONSTEXPR_VAR int RTYPE = INTSXP;
155
+ static constexpr int RTYPE = INTSXP;
180
156
static inline int NA () { return NA_INTEGER; }
181
- static inline RCPP_CONSTEXPR_FUNC int ZERO () { return 0 ; }
182
- static inline RCPP_CONSTEXPR_FUNC int ONE () { return 1 ; }
157
+ static inline constexpr int ZERO () { return 0 ; }
158
+ static inline constexpr int ONE () { return 1 ; }
183
159
};
184
160
185
161
template < typename T >
186
162
struct rtype {
187
163
typedef typename rtype_helper< typename ctype< T >::type >::type type;
188
164
typedef rtype_helper< typename ctype< T >::type > helper_type;
189
- static RCPP_CONSTEXPR_VAR int RTYPE = helper_type::RTYPE;
165
+ static constexpr int RTYPE = helper_type::RTYPE;
190
166
static inline T NA () { return helper_type::NA (); }
191
- static inline RCPP_CONSTEXPR_FUNC T ZERO () { return helper_type::ZERO (); }
192
- static inline RCPP_CONSTEXPR_FUNC T ONE () { return helper_type::ONE (); }
167
+ static inline constexpr T ZERO () { return helper_type::ZERO (); }
168
+ static inline constexpr T ONE () { return helper_type::ONE (); }
193
169
};
194
170
195
171
struct log {
@@ -483,7 +459,4 @@ void sqrt(InputIterator begin, InputIterator end, OutputIterator out) {
483
459
} // namespace algorithm
484
460
} // namespace Rcpp
485
461
486
- #undef RCPP_CONSTEXPR_FUNC
487
- #undef RCPP_CONSTEXPR_VAR
488
-
489
462
#endif
0 commit comments