I am new to Rcpp so still blindly finding my way around. The long and the short of the problem is that I have an object that generates a pointer and I want that pointer returned to R.
I find that casting the pointer to a size_t maintains the necessary precision, however, I seem not to be able to return that with wrap.
In the code below, only returning the unsigned long int will compile, the others throw errors, which for the sake of space I will not include here. And with my object, casting to an unsigned long int causes the compiler to fail due to precision lost (that's in the first block that is all commented out).
Using a size_t should suffice for my needs as to avoid the alternative of creating a wrap template for this type of object.
I checked the changelog and it seems that size_t should be supported. The overview also suggests wrap support for size_t.
#include <Rcpp.h>
#include <iostream>
using namespace Rcpp;
using namespace std;
extern "C" SEXP attempt()
{
// this block if uncommented gives compile error that converting a pointer to unsigned long int loses precision
// also, wrapping the pointer &f causes a compilation error
//int f = 314;
//unsigned long int theVar_longint = (unsigned long int) &f;
//cout << "pointer: " << &f << endl;
//return(wrap(&f));
// This block makes an arbitrary value into a size_t, unsigned long int and unsigned long long int
size_t theVar_sizet = (size_t) 383762523;
unsigned long int theVar_longint = (unsigned long int) 383762523;
unsigned long long int theVar_longlongint = (unsigned long long int) 383762523;
// prints the results
cout << "size_t: " << theVar_sizet << endl;
cout << "longint: " << theVar_longint << endl;
cout << "longlongint: " << theVar_longlongint << endl;
// only the first line returns properly, the others cause errors in compilation
return(wrap(theVar_longint));
//return(wrap(theVar_longlongint));
//return(wrap(theVar_sizet));
}