MCPcopy Create free account
hub / github.com/pybind/pybind11 / ItemsViewImpl

Method ItemsViewImpl

include/pybind11/stl_bind.h:691–691  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

689template <typename Map>
690struct ItemsViewImpl : public detail::items_view {
691 explicit ItemsViewImpl(Map &map) : map(map) {}
692 size_t len() override { return map.size(); }
693 iterator iter() override { return make_iterator(map.begin(), map.end()); }
694 Map &map;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected