add std_map example
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8291 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
cf431d3b47
commit
a80ac86316
6 changed files with 117 additions and 0 deletions
17
Examples/python/std_map/example.h
Normal file
17
Examples/python/std_map/example.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/* File : example.h */
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
template<class Key, class Value>
|
||||
std::map<Key,Value> half_map(const std::map<Key,Value>& v) {
|
||||
typedef typename std::map<Key,Value>::const_iterator iter;
|
||||
std::map<Key,Value> w;
|
||||
for (iter i = v.begin(); i != v.end(); ++i) {
|
||||
w[i->first] = (i->second)/2;
|
||||
}
|
||||
return w;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue