| 2215 | bool empty() const { return size() == 0; } |
| 2216 | detail::dict_iterator begin() const { return {*this, 0}; } |
| 2217 | detail::dict_iterator end() const { return {}; } |
| 2218 | void clear() /* py-non-const */ { PyDict_Clear(ptr()); } |
| 2219 | template <typename T> |
| 2220 | bool contains(T &&key) const { |
nothing calls this directly
no outgoing calls
no test coverage detected