%module cpp11_std_unordered_map %include %include %template(UnorderedMapIntInt) std::unordered_map; %template(UnorderedMapStringInt) std::unordered_map; %inline %{ std::unordered_map,std::equal_to< std::string >,std::allocator< std::pair< std::string const,int > > > inout(std::unordered_map m) { return m; } %}