MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / sqrtTest

Function sqrtTest

inst/tinytest/cpp/algorithm.cpp:38–42  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

36
37// [[Rcpp::export]]
38Rcpp::NumericVector sqrtTest(Rcpp::NumericVector v) {
39 Rcpp::NumericVector x = Rcpp::clone(v);
40 Rcpp::algorithm::sqrt(v.begin(), v.end(), x.begin());
41 return x;
42}
43
44// [[Rcpp::export]]
45double minTest(Rcpp::NumericVector v) {

Callers

nothing calls this directly

Calls 4

cloneFunction · 0.85
sqrtFunction · 0.50
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected