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

Method ValuesViewImpl

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

Source from the content-addressed store, hash-verified

681template <typename Map>
682struct ValuesViewImpl : public detail::values_view {
683 explicit ValuesViewImpl(Map &map) : map(map) {}
684 size_t len() override { return map.size(); }
685 iterator iter() override { return make_value_iterator(map.begin(), map.end()); }
686 Map &map;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected