| 54 | namespace internal{ |
| 55 | extern "C" inline double factorial( double x ){ return ::Rf_gammafn( x + 1.0 ) ; } |
| 56 | extern "C" inline double lfactorial( double x ){ return ::Rf_lgammafn( x + 1.0 ) ; } |
| 57 | } |
| 58 | } |
| 59 | VECTORIZED_MATH_1(factorial , ::Rcpp::internal::factorial ) |
no outgoing calls
no test coverage detected