Rcpp Version 1.0.14
Loading...
Searching...
No Matches
Vector.h
Go to the documentation of this file.
1
2// Vector.h: Rcpp R/C++ interface class library -- vectors
3//
4// Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5//
6// This file is part of Rcpp.
7//
8// Rcpp is free software: you can redistribute it and/or modify it
9// under the terms of the GNU General Public License as published by
10// the Free Software Foundation, either version 2 of the License, or
11// (at your option) any later version.
12//
13// Rcpp is distributed in the hope that it will be useful, but
14// WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17//
18// You should have received a copy of the GNU General Public License
19// along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
20
21#ifndef Rcpp__Vector_h
22#define Rcpp__Vector_h
23
24#include <RcppCommon.h>
25#include <Rcpp/exceptions.h>
26#include <Rcpp/r_cast.h>
27
28namespace Rcpp{
29 namespace traits{
30 template <int RTYPE, bool NA, typename VECTOR> struct Extractor ;
31 }
32 template <int RTYPE> class MatrixRow ;
33 template <int RTYPE> class ConstMatrixRow ;
34 template <int RTYPE> class MatrixColumn ;
35 template <int RTYPE> class ConstMatrixColumn ;
36 template <int RTYPE> class SubMatrix ;
37
38 class Dimension ;
39 template <bool NA,typename T> class SingleLogicalResult ;
40
41}
42
44#include <Rcpp/vector/no_init.h>
45
48
51#include <Rcpp/vector/Vector.h>
52#include <Rcpp/vector/proxy.h>
53#include <Rcpp/vector/traits.h>
54
56
57#include <Rcpp/vector/Matrix.h>
62
67
68#include <Rcpp/String.h>
70#include <Rcpp/vector/swap.h>
71
73#include <Rcpp/vector/ListOf.h>
74
75#endif
Rcpp API.
Definition algo.h:28