Expand description
R object handling.
See. Writing R Extensions
Fundamental principals:
- Any function that can break the protection mechanism is unsafe.
- Users should be able to do almost everything without using
libR_sys
. - The interface should be friendly to R users without Rust experience.
Re-exportsยง
pub use iter::*;
Modulesยง
- debug ๐
- into_
robj ๐ - operators ๐
- rinternals ๐
- try_
from_ ๐robj There are various ways anRobj
may be converted into different typesT
.
Macrosยง
- make_
typed_ ๐slice
Structsยง
- Wrapper for an R S-expression pointer (SEXP).
Traitsยง
- Generic access to typed slices in an Robj.
- Provides access to the attributes of an R object.
- This is an extension trait to provide a convenience method
into_robj()
. - The following impls add operators to Robj.
- The following impls wrap specific Rinternals.h functions.
- Extensions to iterators for R objects including RobjItertools::collect_robj().
ToVectorValue
is a trait that allows many different types to be converted to vectors. It is used as a type parameter tocollect_robj()
.