| 200 | |
| 201 | template <class ArrayT> |
| 202 | Py_ssize_t |
| 203 | getsegcount (PyObject *obj, Py_ssize_t *lenp) |
| 204 | { |
| 205 | // FixedArrays are always in one, fixed-sized block |
| 206 | return 1; |
| 207 | } |
| 208 | |
| 209 | |
| 210 | template <class ArrayT> |
nothing calls this directly
no outgoing calls
no test coverage detected