Implementing tuple_find – A Constexpr-Compatible Algorithm for std::tuple in Modern C++
Most STL algorithms work great with homogeneous containers like std::vector or std::array. But what about heterogeneous ones like std::tuple?In this article, I present an implementation of tuple_find ...