(C++) map.h

January 9, 2018 · View on GitHub

 

 

 

 

 

(C++) map.h

 

map.h is an STL header file that contains the definitions of:

  • std::map
  • std::multi_map

 


#include <map> int main() {   std::map<int, int> m;   std::multi_map<int, int> n;   //Do things with m and n }