pub type RVector<T> = RArray<T, 1>;Expand description
A 1-dimensional R vector with explicit dim attribute.
Aliased Type§
#[repr(transparent)]pub struct RVector<T> {
sexp: SEXP,
_marker: PhantomData<*const T>,
}Fields§
§sexp: SEXP§_marker: PhantomData<*const T>