| 426 | |
| 427 | template<class T> |
| 428 | constexpr py_dictkeys_v |
| 429 | py_dictkeys() |
| 430 | { |
| 431 | return { |
| 432 | sizeof(T), |
| 433 | {offsetof(T, dk_size)}, |
| 434 | {}, |
| 435 | {offsetof(T, dk_nentries)}, |
| 436 | {offsetof(T, dk_indices)}, |
| 437 | }; |
| 438 | } |
| 439 | |
| 440 | template<> |
| 441 | constexpr py_dictkeys_v |
nothing calls this directly
no outgoing calls
no test coverage detected