Skip to content

Instantly share code, notes, and snippets.

@octavifs
Last active March 9, 2021 03:04
Show Gist options
  • Save octavifs/5362297 to your computer and use it in GitHub Desktop.
Save octavifs/5362297 to your computer and use it in GitHub Desktop.
Converts C++ std::map to boost::python::dict
// Converts a C++ map to a python dict
template <class K, class V>
boost::python::dict toPythonDict(std::map<K, V> map) {
typename std::map<K, V>::iterator iter;
boost::python::dict dictionary;
for (iter = map.begin(); iter != map.end(); ++iter) {
dictionary[iter->first] = iter->second;
}
return dictionary;
}
@MoroJr
Copy link

MoroJr commented Dec 2, 2017

@AntonBrunyee, of course it is not working, because you need a const_iterator over iterator.

@okmechak
Copy link

okmechak commented Jun 3, 2020

How to use this function?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment