Get the length of a Python object.
| 2549 | |
| 2550 | /// Get the length of a Python object. |
| 2551 | inline size_t len(handle h) { |
| 2552 | ssize_t result = PyObject_Length(h.ptr()); |
| 2553 | if (result < 0) { |
| 2554 | throw error_already_set(); |
| 2555 | } |
| 2556 | return static_cast<size_t>(result); |
| 2557 | } |
| 2558 | |
| 2559 | /// Get the length hint of a Python object. |
| 2560 | /// Returns 0 when this cannot be determined. |