| 393 | |
| 394 | template<class T> |
| 395 | constexpr py_tuple_v |
| 396 | py_tuple() |
| 397 | { |
| 398 | return { |
| 399 | sizeof(T), |
| 400 | {offsetof(T, ob_base.ob_size)}, |
| 401 | {offsetof(T, ob_item)}, |
| 402 | }; |
| 403 | } |
| 404 | |
| 405 | template<class T> |
| 406 | constexpr py_list_v |
nothing calls this directly
no outgoing calls
no test coverage detected