SLIP  1.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Namespaces | Typedefs
Array.hpp File Reference

Provides a class to manipulate 1d dynamic and generic arrays. More...

#include <iostream>
#include <iterator>
#include <cassert>
#include <cstddef>
#include "Range.hpp"
#include "Box1d.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>
Include dependency graph for Array.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  slip::Array< T >
 This is a linear (one-dimensional) dynamic template container. This container statisfies the RandomAccessContainer concepts of the Standard Template Library (STL). More...
 
class  slip::Array< T >
 This is a linear (one-dimensional) dynamic template 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.
 

Typedefs

typedef slip::Array< double > slip::Array_d
 double alias More...
 
typedef slip::Array< float > slip::Array_f
 float alias More...
 
typedef slip::Array< long > slip::Array_l
 long alias More...
 
typedef slip::Array< unsigned
long > 
slip::Array_ul
 unsigned long alias More...
 
typedef slip::Array< short > slip::Array_s
 short alias More...
 
typedef slip::Array< unsigned
short > 
slip::Array_us
 unsigned long alias More...
 
typedef slip::Array< int > slip::Array_i
 int alias More...
 
typedef slip::Array< unsigned int > slip::Array_ui
 unsigned int alias More...
 
typedef slip::Array< char > slip::Array_c
 char alias More...
 
typedef slip::Array< unsigned
char > 
slip::Array_uc
 unsigned char alias More...
 

Functions

input/output operators
template<typename T >
std::ostream & slip::operator<< (std::ostream &out, const Array< T > &a)
 
EqualityComparable functions
template<typename T >
bool slip::operator== (const Array< T > &x, const Array< T > &y)
 
template<typename T >
bool slip::operator!= (const Array< T > &x, const Array< T > &y)
 
LessThanComparable functions
template<typename T >
bool slip::operator< (const Array< T > &x, const Array< T > &y)
 
template<typename T >
bool slip::operator> (const Array< T > &x, const Array< T > &y)
 
template<typename T >
bool slip::operator<= (const Array< T > &x, const Array< T > &y)
 
template<typename T >
bool slip::operator>= (const Array< T > &x, const Array< T > &y)
 

Detailed Description

Provides a class to manipulate 1d dynamic and generic arrays.

Definition in file Array.hpp.