Is there a standard C++ function object for taking apart a std::pair?

前端 未结 6 1598
粉色の甜心
粉色の甜心 2020-12-20 14:06

Does anyone know if there\'s a de-facto standard (i.e., TR1 or Boost) C++ function object for accessing the elements of a std::pair? Twice in the past 24 hours I\'ve wished

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-20 14:25

    Take a look at boost::adaptors. There are predefined adaptors for iterating over map keys or values without copying them to an intermediate container.

提交回复
热议问题