| 2213 | |
| 2214 | size_t size() const { return static_cast<size_t>(PyDict_Size(m_ptr)); } |
| 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()); } |
no outgoing calls
no test coverage detected