Revision 2a9508b29dfa63182cfa56e60908d36e099266fd authored by Christian Thiele on 29 June 2021, 05:30:02 UTC, committed by cran-robot on 29 June 2021, 05:30:02 UTC
1 parent 2900dc2
get_rev_dups.cpp
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
LogicalVector get_rev_dups(NumericVector x) {
return rev(duplicated(rev(x)));
}

Computing file changes ...