| 912 | // value, and false otherwise |
| 913 | template <class F> |
| 914 | TUPLET_INLINE constexpr bool any(F&& func) & { |
| 915 | return detail::_any(*this, static_cast<F&&>(func), base_list {}); |
| 916 | } |
| 917 | template <class F> |
| 918 | TUPLET_INLINE constexpr bool any(F&& func) const& { |
| 919 | return detail::_any(*this, static_cast<F&&>(func), base_list {}); |
nothing calls this directly
no outgoing calls
no test coverage detected