首页 > 代码库 > c++ tips

c++ tips

- std::include //if subset
  std::include(collection1.begin(), collection1.end(), collection2.begin(), collection2.end()} => if collection2 is a subset of collection1 //vector, set
  

c++ tips