[[Rcpp::export]]
| 59 | |
| 60 | // [[Rcpp::export]] |
| 61 | List function_binarycall(List list,IntegerVector vec){ |
| 62 | Function pmin( "pmin" ) ; |
| 63 | List output( list.size() ) ; |
| 64 | std::transform( |
| 65 | list.begin(), list.end(), |
| 66 | vec.begin(), |
| 67 | output.begin(), |
| 68 | binary_call<IntegerVector,int,IntegerVector>(pmin) |
| 69 | ) ; |
| 70 | return output ; |
| 71 | } |
| 72 | |
| 73 | // [[Rcpp::export]] |
| 74 | Function function_namespace_env(){ |