|
template<typename Predicate > |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::impl::all_of_impl (Predicate &&) |
|
template<typename Predicate , typename T , typename... Vs> |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::impl::all_of_impl (Predicate &&p, T &¤t, Vs &&... rest) |
|
template<typename Predicate , typename Tuple , std::size_t... I> |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::impl::perform_all_of (Predicate &&p, Tuple &&t, std::index_sequence< I... >) |
|
template<typename Predicate > |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::impl::any_of_impl (Predicate &&) |
|
template<typename Predicate , typename T , typename... Vs> |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::impl::any_of_impl (Predicate &&p, T &¤t, Vs &&... rest) |
|
template<typename Predicate , typename Tuple , std::size_t... I> |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::impl::perform_any_of (Predicate &&p, Tuple &&t, std::index_sequence< I... >) |
|
template<typename Tuple , typename Predicate > |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::all_of (Tuple &&tuple, Predicate &&predicate) |
|
template<typename Tuple , typename Predicate > |
RESTINIO_NODISCARD bool | restinio::utils::tuple_algorithms::any_of (Tuple &&tuple, Predicate &&predicate) |
|
Various meta-functions for operating the content of a tuple.
- Since
- v.0.6.1
Definition in file tuple_algorithms.hpp.