If set, the array owns the data (will be freed when the array is deleted)
| 1190 | |
| 1191 | /// If set, the array owns the data (will be freed when the array is deleted) |
| 1192 | bool owndata() const { |
| 1193 | return detail::check_flags(m_ptr, detail::npy_api::NPY_ARRAY_OWNDATA_); |
| 1194 | } |
| 1195 | |
| 1196 | /// Pointer to the contained data. If index is not provided, points to the |
| 1197 | /// beginning of the buffer. May throw if the index would lead to out of bounds access. |