/usr/share/swig/3.0.12/lua
NameSizeModeActions
carrays.i2560644editdlrm
factory.i5190644editdlrm
lua.swg89220644editdlrm
luakw.swg12200644editdlrm
luarun.swg667620644editdlrm
luaruntime.swg30260644editdlrm
luatypemaps.swg142490644editdlrm
lua_fnptr.i42280644editdlrm
std_common.i1020644editdlrm
std_deque.i280644editdlrm
std_except.i19840644editdlrm
std_map.i17540644editdlrm
std_pair.i7690644editdlrm
std_string.i32870644editdlrm
std_vector.i30820644editdlrm
stl.i2910644editdlrm
typemaps.i194350644editdlrm
wchar.i10940644editdlrm
_std_common.i25540644editdlrm
Edit: /usr/share/swig/3.0.12/lua/std_map.i (1754B)
/* ----------------------------------------------------------------------------- * std_map.i * * SWIG typemaps for std::map * ----------------------------------------------------------------------------- */ %include // ------------------------------------------------------------------------ // std::map // ------------------------------------------------------------------------ %{ #include #include #include %} // exported class namespace std { template class map { // add typemaps here public: typedef size_t size_type; typedef ptrdiff_t difference_type; typedef K key_type; typedef T mapped_type; map(); map(const map &); unsigned int size() const; bool empty() const; void clear(); %extend { const T& get(const K& key) throw (std::out_of_range) { std::map::iterator i = self->find(key); if (i != self->end()) return i->second; else throw std::out_of_range("key not found"); } void set(const K& key, const T& x) { (*self)[key] = x; } void del(const K& key) throw (std::out_of_range) { std::map::iterator i = self->find(key); if (i != self->end()) self->erase(i); else throw std::out_of_range("key not found"); } bool has_key(const K& key) { std::map::iterator i = self->find(key); return i != self->end(); } } }; }