// Range v3 library // // Copyright 2019 Christopher Di Bella // // Use, modification and distribution is subject to the // Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // Project home: https://github.com/ericniebler/range-v3 #ifndef RANGES_V3_ALGORITHM_STARTS_WITH_HPP #define RANGES_V3_ALGORITHM_STARTS_WITH_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-algorithms /// @{ // template // struct starts_with_result : detail::in1_in2_result // { // bool result; // }; RANGES_BEGIN_NIEBLOID(starts_with) /// \brief function template \c starts_with template constexpr auto RANGES_FUN_NIEBLOID(starts_with)(I1 first1, S1 last1, I2 first2, S2 last2, Comp comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {}) // ->CPP_ret(bool)( // requires input_iterator && sentinel_for && input_iterator && sentinel_for && indirectly_comparable) { return mismatch(std::move(first1), std::move(last1), std::move(first2), last2, std::move(comp), std::move(proj1), std::move(proj2)) .in2 == last2; } /// \overload template constexpr auto RANGES_FUN_NIEBLOID(starts_with)( R1 && r1, R2 && r2, Comp comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {}) // ->CPP_ret(bool)( // requires input_range && input_range && indirectly_comparable, iterator_t, Comp, Proj1, Proj2>) { return (*this)( // begin(r1), end(r1), begin(r2), end(r2), std::move(comp), std::move(proj1), std::move(proj2)); } RANGES_END_NIEBLOID(starts_with) /// @} } // namespace ranges #endif // RANGES_V3_ALGORITHM_STARTS_WITH_HPP