| 212 | */ |
| 213 | template< typename PredicateT > |
| 214 | inline detail::token_finderF<PredicateT> |
| 215 | token_finder( |
| 216 | PredicateT Pred, |
| 217 | token_compress_mode_type eCompress=token_compress_off ) |
| 218 | { |
| 219 | return detail::token_finderF<PredicateT>( Pred, eCompress ); |
| 220 | } |
| 221 | |
| 222 | //! "Range" finder |
| 223 | /*! |
no outgoing calls
no test coverage detected