| 372 | const T & operator () (size_t i, size_t j) const { return _ptr[_stride.x*(j*_stride.y + i)]; } |
| 373 | size_t totalLen() const { return _size; } |
| 374 | boost::python::tuple size() const |
| 375 | { |
| 376 | return boost::python::make_tuple(_length.x, _length.y); |
| 377 | } |
| 378 | |
| 379 | static boost::python::class_<FixedArray2D<T> > register_(const char *name, const char *doc) |
| 380 | { |
nothing calls this directly
no outgoing calls
no test coverage detected