| 258 | T *device() const { return const_cast<Array<T> *>(this)->device(); } |
| 259 | |
| 260 | T *get(bool withOffset = true) { |
| 261 | return const_cast<T *>( |
| 262 | static_cast<const Array<T> *>(this)->get(withOffset)); |
| 263 | } |
| 264 | |
| 265 | const T *get(bool withOffset = true) const { |
| 266 | if (!data.get()) eval(); |
no test coverage detected