| 199 | */ |
| 200 | template<typename RangeT> |
| 201 | inline detail::is_any_ofF< |
| 202 | BOOST_STRING_TYPENAME range_value<RangeT>::type> |
| 203 | is_any_of( const RangeT& Set ) |
| 204 | { |
| 205 | iterator_range<BOOST_STRING_TYPENAME range_const_iterator<RangeT>::type> lit_set(boost::as_literal(Set)); |
| 206 | return detail::is_any_ofF<BOOST_STRING_TYPENAME range_value<RangeT>::type>(lit_set); |
| 207 | } |
| 208 | |
| 209 | //! is_from_range predicate |
| 210 | /*! |
no test coverage detected