#include <numpy.h>
Public Member Functions | |
template<typename... Ix> | |
T * | mutable_data (Ix... ix) |
Mutable pointer access to the data at the given indices. More... | |
template<typename... Ix> | |
T & | operator() (Ix... index) |
Mutable, unchecked access to data at the given indices. More... | |
template<ssize_t D = Dims, typename = enable_if_t<D == 1 || Dynamic>> | |
T & | operator[] (ssize_t index) |
Public Member Functions inherited from unchecked_reference< T, Dims > | |
template<typename... Ix> | |
const T * | data (Ix... ix) const |
Pointer access to the data at the given indices. More... | |
ssize_t | nbytes () const |
ssize_t | ndim () const |
Returns the number of dimensions of the array. More... | |
template<typename... Ix> | |
const T & | operator() (Ix... index) const |
template<ssize_t D = Dims, typename = enable_if_t<D == 1 || Dynamic>> | |
const T & | operator[] (ssize_t index) const |
ssize_t | shape (ssize_t dim) const |
Returns the shape (i.e. size) of dimension dim More... | |
template<bool Dyn = Dynamic> | |
enable_if_t<!Dyn, ssize_t > | size () const |
template<bool Dyn = Dynamic> | |
enable_if_t< Dyn, ssize_t > | size () const |
Private Types | |
using | ConstBase = unchecked_reference< T, Dims > |
Static Private Attributes | |
static constexpr bool | Dynamic |
Friends | |
class | pybind11::array |
Additional Inherited Members | |
Static Public Member Functions inherited from unchecked_reference< T, Dims > | |
constexpr static ssize_t | itemsize () |
Returns the item size, i.e. sizeof(T) More... | |
Protected Member Functions inherited from unchecked_reference< T, Dims > | |
template<bool Dyn = Dynamic> | |
unchecked_reference (const void *data, const ssize_t *shape, const ssize_t *strides, enable_if_t< Dyn, ssize_t > dims) | |
template<bool Dyn = Dynamic> | |
unchecked_reference (const void *data, const ssize_t *shape, const ssize_t *strides, enable_if_t<!Dyn, ssize_t >) | |
Protected Attributes inherited from unchecked_reference< T, Dims > | |
const unsigned char * | data_ |
const ssize_t | dims_ |
conditional_t< Dynamic, const ssize_t *, std::array< ssize_t,(size_t) Dims > > | shape_ |
conditional_t< Dynamic, const ssize_t *, std::array< ssize_t,(size_t) Dims > > | strides_ |
Static Protected Attributes inherited from unchecked_reference< T, Dims > | |
static constexpr bool | Dynamic = Dims < 0 |
|
private |
|
inline |
|
inline |
|
inline |
|
friend |
|
staticconstexprprivate |