template obj_type nhashmap::get_elem(key_type_ t_key) { typename hashmap::iterator iter = this->find(t_key); if ( iter != this->end() ) return iter->second; return NULL; }