Various operators for templated vnl classes. More...
#include <vnl/vnl_vector.h>
#include <vnl/vnl_vector_fixed.h>
#include <vnl/vnl_matrix.h>
#include <vnl/vnl_matrix_fixed.h>
Go to the source code of this file.
Functions | |
template<class T > | |
bool | operator< (vnl_vector< T > const &lhs, vnl_vector< T > const &rhs) |
Define a complete ordering on vnl_vector. | |
template<class T > | |
bool | operator< (vnl_matrix< T > const &lhs, vnl_matrix< T > const &rhs) |
Define a complete ordering on vnl_matrix. | |
template<class T , unsigned int n> | |
bool | operator< (vnl_vector_fixed< T, n > const &lhs, vnl_vector_fixed< T, n > const &rhs) |
Define a complete ordering on vnl_vector_fixed. | |
template<class T , unsigned int n, unsigned int m> | |
bool | operator< (vnl_matrix_fixed< T, n, m > const &lhs, vnl_matrix_fixed< T, n, m > const &rhs) |
Define a complete ordering on vnl_matrix_fixed. |
Various operators for templated vnl classes.
Definition in file vnl_operators.h.
bool operator< | ( | vnl_vector< T > const & | lhs, |
vnl_vector< T > const & | rhs | ||
) |
Define a complete ordering on vnl_vector.
This is useful to create a set, or map of vectors.
The ordering itself is implementation defined - so don't rely on the meaning of less here.
Definition at line 23 of file vnl_operators.h.
bool operator< | ( | vnl_matrix< T > const & | lhs, |
vnl_matrix< T > const & | rhs | ||
) |
Define a complete ordering on vnl_matrix.
This is useful to create a set, or map of matrices.
The ordering itself is implementation defined - so don't rely on the meaning of less here.
Definition at line 47 of file vnl_operators.h.
bool operator< | ( | vnl_vector_fixed< T, n > const & | lhs, |
vnl_vector_fixed< T, n > const & | rhs | ||
) |
Define a complete ordering on vnl_vector_fixed.
This is useful to create a set, or map of vectors.
Definition at line 70 of file vnl_operators.h.
bool operator< | ( | vnl_matrix_fixed< T, n, m > const & | lhs, |
vnl_matrix_fixed< T, n, m > const & | rhs | ||
) |
Define a complete ordering on vnl_matrix_fixed.
This is useful to create a set, or map of matrices.
Definition at line 81 of file vnl_operators.h.