| 193 | |
| 194 | template <class _InputIterator1, class _InputIterator2, class _BinaryPredicate> |
| 195 | [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool |
| 196 | equal(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _BinaryPredicate __pred) { |
| 197 | return std::__equal_iter_impl( |
| 198 | std::__unwrap_iter(__first1), std::__unwrap_iter(__last1), std::__unwrap_iter(__first2), __pred); |
| 199 | } |
| 200 | |
| 201 | template <class _InputIterator1, class _InputIterator2> |
| 202 | [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool |
nothing calls this directly
no test coverage detected