| 256 | T *device() const { return const_cast<Array<T> *>(this)->device(); } |
| 257 | |
| 258 | T *get(bool withOffset = true) { |
| 259 | if (!isReady()) eval(); |
| 260 | return const_cast<T *>( |
| 261 | static_cast<const Array<T> *>(this)->get(withOffset)); |
| 262 | } |
| 263 | |
| 264 | // FIXME: implement withOffset parameter |
| 265 | const T *get(bool withOffset = true) const { |
no test coverage detected