Skip to content

Instantly share code, notes, and snippets.

@knapply
Last active November 6, 2018 18:56
Show Gist options
  • Save knapply/a4d985c8e9f41ec34310d873cf12305b to your computer and use it in GitHub Desktop.
Save knapply/a4d985c8e9f41ec34310d873cf12305b to your computer and use it in GitHub Desktop.
Cpp: length built-in
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
int cpp_size(NumericVector x) {
return x.size();
}
/*** R
cpp_size(1:20)
#> [1] 20
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment