|
| Row ()=default |
| Default ctor.
|
|
| Row (const Row &)=default |
| Copy ctor.
|
|
Row & | operator= (const Row &)=default |
| Copy assignment. More...
|
|
CVB_FORCE_INLINE PixelType & | operator[] (int x) noexcept |
| Column access. More...
|
|
CVB_FORCE_INLINE const PixelType & | operator[] (int x) const noexcept |
| Column access. More...
|
|
template<class FromPixelType > |
CVB_FORCE_INLINE auto | Set (int x, const FromPixelType &value) noexcept -> std::enable_if_t<!std::is_convertible< remove_cvref_t< FromPixelType >, remove_cvref_t< PixelType > >::value, void > |
| Column setter. More...
|
|
CVB_FORCE_INLINE void | Set (int x, const PixelType &value) noexcept |
| Column setter. More...
|
|
template<class T, class ACCESSTRAIT>
class Cvb::Block< T, ACCESSTRAIT >::Row
A single row.