// Copyright Andrey Semashev 2025. // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // https://www.boost.org/LICENSE_1_0.txt) #include #include #include #include using std::is_same; using boost::iterators::min_category; using boost::iterators::min_category_t; int main(int, char*[]) { BOOST_TEST_TRAIT_TRUE((is_same::type, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same::type, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same::type, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same::type, std::random_access_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same::type, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same::type, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same, std::random_access_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same, std::forward_iterator_tag>)); BOOST_TEST_TRAIT_TRUE((is_same, std::forward_iterator_tag>)); return boost::report_errors(); }