| 166 | |
| 167 | template<class T> |
| 168 | constexpr py_is_v |
| 169 | py_is() |
| 170 | { |
| 171 | return { |
| 172 | sizeof(T), |
| 173 | {offsetof(T, next)}, |
| 174 | {offsetof(T, tstate_head)}, |
| 175 | {offsetof(T, gc)}, |
| 176 | {offsetof(T, modules)}, |
| 177 | {offsetof(T, sysdict)}, |
| 178 | {offsetof(T, builtins)}, |
| 179 | }; |
| 180 | } |
| 181 | |
| 182 | template<class T> |
| 183 | constexpr py_is_v |
nothing calls this directly
no outgoing calls
no test coverage detected