| 415 | |
| 416 | template<class T> |
| 417 | constexpr py_dict_v |
| 418 | py_dict() |
| 419 | { |
| 420 | return { |
| 421 | sizeof(T), |
| 422 | {offsetof(T, ma_keys)}, |
| 423 | {offsetof(T, ma_values)}, |
| 424 | }; |
| 425 | } |
| 426 | |
| 427 | template<class T> |
| 428 | constexpr py_dictkeys_v |
nothing calls this directly
no outgoing calls
no test coverage detected