#include <meteoio/IOUtils.h>
#include <meteoio/IOExceptions.h>
#include <vector>
#include <limits>
#include <iostream>
#include <numeric>
#include <algorithm>
#include <meteoio/dataClasses/Array2D.h>
Go to the source code of this file.
|
class | mio::Array3D< T > |
| The template class Array3D is a 3D Array (Tensor) able to hold any type of object as datatype. It relies on the Array3DProxy2 class to provide the [][][] operator (slower than the (i,j,k) call). If the compilation flag NOSAFECHECKS is used, bounds check is turned off (leading to increased performances). More...
|
|
|
template<class P > |
std::ostream & | mio::operator<< (std::ostream &os, const Array3D< P > &array) |
|
template<class P > |
std::istream & | mio::operator>> (std::istream &is, Array3D< P > &array) |
|