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