| 404 | |
| 405 | template<class T> |
| 406 | constexpr py_list_v |
| 407 | py_list() |
| 408 | { |
| 409 | return { |
| 410 | sizeof(T), |
| 411 | {offsetof(T, ob_base.ob_size)}, |
| 412 | {offsetof(T, ob_item)}, |
| 413 | }; |
| 414 | } |
| 415 | |
| 416 | template<class T> |
| 417 | constexpr py_dict_v |
nothing calls this directly
no outgoing calls
no test coverage detected