|
LSSTApplications
8.0.0.0+107,8.0.0.1+13,9.1+18,9.2,master-g084aeec0a4,master-g0aced2eed8+6,master-g15627eb03c,master-g28afc54ef9,master-g3391ba5ea0,master-g3d0fb8ae5f,master-g4432ae2e89+36,master-g5c3c32f3ec+17,master-g60f1e072bb+1,master-g6a3ac32d1b,master-g76a88a4307+1,master-g7bce1f4e06+57,master-g8ff4092549+31,master-g98e65bf68e,master-ga6b77976b1+53,master-gae20e2b580+3,master-gb584cd3397+53,master-gc5448b162b+1,master-gc54cf9771d,master-gc69578ece6+1,master-gcbf758c456+22,master-gcec1da163f+63,master-gcf15f11bcc,master-gd167108223,master-gf44c96c709
LSSTDataManagementBasePackage
|
Definition for Vector. More...
#include <boost/type_traits/is_arithmetic.hpp>#include <boost/iterator/reverse_iterator.hpp>#include <boost/mpl/int.hpp>#include <boost/utility/enable_if.hpp>#include <boost/preprocessor/repetition/repeat.hpp>#include <boost/preprocessor/repetition/repeat_from_to.hpp>#include <boost/preprocessor/repetition/enum.hpp>#include <iostream>#include "ndarray_fwd.h"#include "ndarray/types.h"Go to the source code of this file.
Classes | |
| struct | ndarray::detail::DefaultValue< T, isArithmetic > |
| struct | ndarray::detail::DefaultValue< T, true > |
| class | ndarray::Vector< T, N > |
| A fixed-size 1D array class. More... | |
| struct | ndarray::Vector< T, 0 > |
| PArtial specialization for zero-size vectors to avoid compiler errors on some platforms. More... | |
Namespaces | |
| ndarray | |
| ndarray::detail | |
Functions | |
| template<typename T , int N, int M> | |
| Vector< T, N+M > | ndarray::concatenate (Vector< T, N > const &a, Vector< T, M > const &b) |
| Concatenate two Vectors into a single long Vector. More... | |
| template<typename T , int N> | |
| Vector< T, N+1 > | ndarray::concatenate (Vector< T, N > const &a, T const &b) |
| Return a new Vector with the given scalar appended to the original. More... | |
| template<typename T , int N> | |
| Vector< T, N+1 > | ndarray::concatenate (T const &a, Vector< T, N > const &b) |
| Return a new Vector with the given scalar prepended to the original. More... | |
| template<typename T , int N> | |
| Vector< T, N > | ndarray::makeVector (T v1, T v2,..., T vN) |
| Variadic constructor for Vector. More... | |
| template<typename T , int N> | |
| Vector< T, N > | ndarray::operator~ (Vector< T, N > const &vector) |
| Unary bitwise NOT for Vector. More... | |
| template<typename T , int N> | |
| Vector< T, N > | ndarray::operator! (Vector< T, N > const &vector) |
| Unary negation for Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator+ (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector + Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator+ (Vector< T, N > const &a, U b) |
| Operator overload for Vector + Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator+ (U a, Vector< T, N > const &b) |
| Operator overload for Scalar + Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator- (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector - Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator- (Vector< T, N > const &a, U b) |
| Operator overload for Vector - Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator- (U a, Vector< T, N > const &b) |
| Operator overload for Scalar - Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator* (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector * Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator* (Vector< T, N > const &a, U b) |
| Operator overload for Vector * Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator* (U a, Vector< T, N > const &b) |
| Operator overload for Scalar * Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator/ (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector / Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator/ (Vector< T, N > const &a, U b) |
| Operator overload for Vector / Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator/ (U a, Vector< T, N > const &b) |
| Operator overload for Scalar / Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator% (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector % Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator% (Vector< T, N > const &a, U b) |
| Operator overload for Vector % Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator% (U a, Vector< T, N > const &b) |
| Operator overload for Scalar % Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator& (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector & Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator& (Vector< T, N > const &a, U b) |
| Operator overload for Vector & Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator& (U a, Vector< T, N > const &b) |
| Operator overload for Scalar & Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator^ (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector ^ Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator^ (Vector< T, N > const &a, U b) |
| Operator overload for Vector ^ Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator^ (U a, Vector< T, N > const &b) |
| Operator overload for Scalar ^ Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator| (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector | Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator| (Vector< T, N > const &a, U b) |
| Operator overload for Vector | Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator| (U a, Vector< T, N > const &b) |
| Operator overload for Scalar | Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator<< (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector << Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator<< (Vector< T, N > const &a, U b) |
| Operator overload for Vector << Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator<< (U a, Vector< T, N > const &b) |
| Operator overload for Scalar << Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator>> (Vector< T, N > const &a, Vector< U, N > const &b) |
| Operator overload for Vector >> Vector. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator>> (Vector< T, N > const &a, U b) |
| Operator overload for Vector >> Scalar. More... | |
| template<typename T , typename U , int N> | |
| Vector< typename Promote< T, U > ::Type, N > | ndarray::operator>> (U a, Vector< T, N > const &b) |
| Operator overload for Scalar >> Vector. More... | |
Definition for Vector.
Definition in file Vector.h.
1.8.5