CXXR (C++ R)
|
Class CXXR::ListVector and associated C interface. More...
Go to the source code of this file.
Namespaces | |
namespace | CXXR |
Namespace for the CXXR project. |
Typedefs | |
typedef FixedVector< RHandle <>, VECSXP > | CXXR::ListVector |
General vector of RHandle<RObject>. |
Functions | |
SEXP | SET_VECTOR_ELT (SEXP x, int i, SEXP v) |
Set element of CXXR::ListVector. | |
SEXP | VECTOR_ELT (SEXP x, int i) |
Examine element of CXXR::ListVector. |
Class CXXR::ListVector and associated C interface.
(ListVector implements VECSXP.)
Set element of CXXR::ListVector.
x | Pointer to a CXXR::ListVector. |
i | Index of the required element. There is no bounds checking. |
v | Pointer, possibly null, to CXXR::RObject representing the new value. |
Examine element of CXXR::ListVector.
x | Non-null pointer to a CXXR::ListVector . |
i | Index of the required element. There is no bounds checking. |