| 2247 | return static_cast<size_t>(result); |
| 2248 | } |
| 2249 | bool empty() const { return size() == 0; } |
| 2250 | detail::sequence_accessor operator[](size_t index) const { return {*this, index}; } |
| 2251 | template <typename T, detail::enable_if_t<detail::is_pyobject<T>::value, int> = 0> |
| 2252 | detail::item_accessor operator[](T &&o) const { |
nothing calls this directly
no outgoing calls
no test coverage detected