Multidimensional array container with data access facilities The number of dimensions is compile time-known.
More...
|
| | Array (size_t length) |
| |
| | Array (size_t width, size_t height) |
| |
| | Array (size_t width, size_t height, size_t depth) |
| |
| | Array (size_t channels, size_t width, size_t height, size_t depth) |
| |
| datatype * | data () |
| |
| size_t | size () const |
| |
| datatype & | operator() (size_t i) |
| |
| datatype & | operator() (size_t x, size_t y) |
| |
| datatype & | operator() (size_t x, size_t y, size_t z) |
| |
| datatype & | operator() (size_t c, size_t x, size_t y, size_t z) |
| |
| const datatype & | operator() (size_t c, size_t x, size_t y, size_t z) const |
| |
template<typename datatype, size_t numdim>
class Beatmup::Array< datatype, numdim >
Multidimensional array container with data access facilities The number of dimensions is compile time-known.
Definition at line 27 of file array.h.