Single-character code for dtype's kind. For example, floating point types are 'f' and integral types are 'i'.
| 914 | /// Single-character code for dtype's kind. |
| 915 | /// For example, floating point types are 'f' and integral types are 'i'. |
| 916 | char kind() const { return detail::array_descriptor_proxy(m_ptr)->kind; } |
| 917 | |
| 918 | /// Single-character for dtype's type. |
| 919 | /// For example, ``float`` is 'f', ``double`` 'd', ``int`` 'i', and ``long`` 'l'. |