RTC Toolkit 4.0.1
|
Declaration of the MatrixBuffer template class used in APIs. More...
#include <cassert>
#include <memory>
#include <vector>
Go to the source code of this file.
Classes | |
class | rtctk::componentFramework::MatrixBuffer< T, A > |
A buffer class representing 2D matrix data. More... | |
Namespaces | |
namespace | rtctk |
namespace | rtctk::componentFramework |
Functions | |
template<typename T , typename A > | |
constexpr bool | rtctk::componentFramework::operator== (const MatrixBuffer< T, A > &lhs, const MatrixBuffer< T, A > &rhs) noexcept |
Compares two MatrixBuffer objects and returns true if they have the same shape and identical elements. | |
template<typename T , typename A > | |
constexpr bool | rtctk::componentFramework::operator!= (const MatrixBuffer< T, A > &lhs, const MatrixBuffer< T, A > &rhs) noexcept |
Compares two MatrixBuffer objects and returns true if they do not have the same shape or the elements are different. | |
template<typename T , typename A > | |
constexpr bool | rtctk::componentFramework::operator< (const MatrixBuffer< T, A > &lhs, const MatrixBuffer< T, A > &rhs) noexcept |
Compares two MatrixBuffer objects and returns true for the following cases: | |
template<typename T , typename A > | |
constexpr bool | rtctk::componentFramework::operator<= (const MatrixBuffer< T, A > &lhs, const MatrixBuffer< T, A > &rhs) noexcept |
Compares two MatrixBuffer objects and effectively returns rhs < lhs or rhs == lhs . | |
template<typename T , typename A > | |
constexpr bool | rtctk::componentFramework::operator> (const MatrixBuffer< T, A > &lhs, const MatrixBuffer< T, A > &rhs) noexcept |
Compares two MatrixBuffer objects and returns true for the following cases: | |
template<typename T , typename A > | |
constexpr bool | rtctk::componentFramework::operator>= (const MatrixBuffer< T, A > &lhs, const MatrixBuffer< T, A > &rhs) noexcept |
Compares two MatrixBuffer objects and effectively returns rhs > lhs or rhs == lhs . | |
Declaration of the MatrixBuffer template class used in APIs.