"Tail" finder ! Construct the \c tail_finder. The finder returns a tail of a given input. The tail is a suffix of a string up to n elements in size. If an input has less then n elements, whole input is considered a head. The result is given as an \c iterator_range delimiting the match. \param N The size of the head
| 190 | \return An instance of the \c tail_finder object |
| 191 | */ |
| 192 | inline detail::tail_finderF |
| 193 | tail_finder( int N ) |
| 194 | { |
| 195 | return detail::tail_finderF(N); |
| 196 | } |
| 197 | |
| 198 | //! "Token" finder |
| 199 | /*! |
no test coverage detected