Rcpp Version 1.0.9
enable_if.h
Go to the documentation of this file.
1 #ifndef RCPP_TRAITS_ENABLE_IF_H
2 #define RCPP_TRAITS_ENABLE_IF_H
3 
4 namespace Rcpp {
5 namespace traits {
6 
7 template <bool B, typename T = void>
8 struct enable_if {};
9 
10 template <typename T>
11 struct enable_if<true, T> {
12  typedef T type;
13 };
14 
15 }
16 }
17 
18 #endif
Rcpp API.
Definition: algo.h:28