SLIP
1.4
|
Provides a class to manipulate 1d static and generic arrays. More...
#include <iterator>
#include <iostream>
#include <cstddef>
#include "Range.hpp"
#include "stride_iterator.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 | |
struct | slip::block< T, N > |
This is a linear (one-dimensional) static container. This container statisfies the RandomAccessContainer concepts of the Standard Template Library (STL). More... | |
struct | slip::block< T, N > |
This is a linear (one-dimensional) static container. This container statisfies the RandomAccessContainer concepts of the Standard Template Library (STL). 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 N> | |
std::ostream & | slip::operator<< (std::ostream &out, const block< T, N > &b) |
EqualityComparable functions | |
template<typename T , std::size_t N> | |
bool | slip::operator== (const block< T, N > &x, const block< T, N > &y) |
template<typename T , std::size_t N> | |
bool | slip::operator!= (const block< T, N > &x, const block< T, N > &y) |
LessThanComparable functions | |
template<typename T , std::size_t N> | |
bool | slip::operator< (const block< T, N > &x, const block< T, N > &y) |
template<typename T , std::size_t N> | |
bool | slip::operator> (const block< T, N > &x, const block< T, N > &y) |
template<typename T , std::size_t N> | |
bool | slip::operator<= (const block< T, N > &x, const block< T, N > &y) |
template<typename T , std::size_t N> | |
bool | slip::operator>= (const block< T, N > &x, const block< T, N > &y) |
Provides a class to manipulate 1d static and generic arrays.
Definition in file Block.hpp.