Alignment of the data type
| 950 | |
| 951 | /// Alignment of the data type |
| 952 | ssize_t alignment() const { |
| 953 | if (detail::npy_api::get().PyArray_RUNTIME_VERSION_ < 0x12) { |
| 954 | return detail::array_descriptor1_proxy(m_ptr)->alignment; |
| 955 | } |
| 956 | return detail::array_descriptor2_proxy(m_ptr)->alignment; |
| 957 | } |
| 958 | |
| 959 | /// Flags for the array descriptor |
| 960 | std::uint64_t flags() const { |