Warning, file /include/boost/algorithm/searching/detail/debugging.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_ALGORITHM_SEARCH_DETAIL_DEBUG_HPP
0011 #define BOOST_ALGORITHM_SEARCH_DETAIL_DEBUG_HPP
0012
0013 #include <iostream>
0014
0015
0016 namespace boost { namespace algorithm { namespace detail {
0017
0018
0019 template <typename Iter>
0020 void PrintTable ( Iter first, Iter last ) {
0021 std::cout << std::distance ( first, last ) << ": { ";
0022 for ( Iter iter = first; iter != last; ++iter )
0023 std::cout << *iter << " ";
0024 std::cout << "}" << std::endl;
0025 }
0026
0027 }}}
0028
0029
0030 #endif