SLIP
1.4
|
Provides a class to manipulate 3d static and generic arrays. More...
#include <iostream>
#include <iterator>
#include <cassert>
#include <cstddef>
#include <string>
#include "Block2d.hpp"
#include <boost/serialization/access.hpp>
#include <boost/serialization/split_member.hpp>
#include <boost/serialization/string.hpp>
#include <boost/serialization/complex.hpp>
#include <boost/serialization/version.hpp>
Go to the source code of this file.
Classes | |
class | slip::block3d< T, NP, NR, NC > |
This a three-dimensional static and generic container. This container statisfies the BidirectionnalContainer concepts of the STL. It is also an 3d extension of the RandomAccessContainer concept. That is to say the bracket element access is replaced by the triple bracket element access. More... | |
class | slip::block3d< T, NP, NR, NC > |
This a three-dimensional static and generic container. This container statisfies the BidirectionnalContainer concepts of the STL. It is also an 3d extension of the RandomAccessContainer concept. That is to say the bracket element access is replaced by the triple bracket element access. More... | |
Namespaces | |
slip | |
This namespace corresponds to the kernel of the Simple Library on Image Processing (SLIP). That is to say that it contains the data structures and the algorithms needed by these data strucutres. | |
Functions | |
input/output operators | |
template<typename T , std::size_t NP, std::size_t NR, std::size_t NC> | |
std::ostream & | slip::operator<< (std::ostream &out, const slip::block3d< T, NP, NR, NC > &b) |
EqualityComparable functions | |
template<typename T , std::size_t NP, std::size_t NR, std::size_t NC> | |
bool | slip::operator== (const slip::block3d< T, NP, NR, NC > &x, const slip::block3d< T, NP, NR, NC > &y) |
template<typename T , std::size_t NP, std::size_t NR, std::size_t NC> | |
bool | slip::operator!= (const slip::block3d< T, NP, NR, NC > &x, const slip::block3d< T, NP, NR, NC > &y) |
LessThanComparable functions | |
template<typename T , std::size_t NP, std::size_t NR, std::size_t NC> | |
bool | slip::operator< (const slip::block3d< T, NP, NR, NC > &x, const slip::block3d< T, NP, NR, NC > &y) |
template<typename T , std::size_t NP, std::size_t NR, std::size_t NC> | |
bool | slip::operator> (const slip::block3d< T, NP, NR, NC > &x, const slip::block3d< T, NP, NR, NC > &y) |
template<typename T , std::size_t NP, std::size_t NR, std::size_t NC> | |
bool | slip::operator<= (const slip::block3d< T, NP, NR, NC > &x, const slip::block3d< T, NP, NR, NC > &y) |
template<typename T , std::size_t NP, std::size_t NR, std::size_t NC> | |
bool | slip::operator>= (const slip::block3d< T, NP, NR, NC > &x, const slip::block3d< T, NP, NR, NC > &y) |
Provides a class to manipulate 3d static and generic arrays.
Definition in file Block3d.hpp.