antioch-0.4.0
Namespaces | Macros
cmath_shims.h File Reference
#include "antioch/metaprogramming_decl.h"
#include <algorithm>
#include <cmath>

Go to the source code of this file.

Namespaces

 Antioch
 The parameters are reduced parameters.
 

Macros

#define ANTIOCH_UNARY_SHIM(funcname)
 
#define ANTIOCH_BINARY_SHIM(funcname)
 

Macro Definition Documentation

#define ANTIOCH_BINARY_SHIM (   funcname)
Value:
template <typename T1, typename T2> \
inline \
T1 \
ant_##funcname (const T1& in1, const T2& in2) \
{ \
using std::funcname; \
return funcname(in1, in2); \
}

Definition at line 85 of file cmath_shims.h.

#define ANTIOCH_UNARY_SHIM (   funcname)
Value:
template <typename T> \
inline \
T \
ant_##funcname (const T& in) \
{ \
using std::funcname; \
return funcname(in); \
}

Definition at line 75 of file cmath_shims.h.


Generated on Thu Jul 7 2016 11:09:47 for antioch-0.4.0 by  doxygen 1.8.8