is_space predicate ! Construct the \c is_classified predicate for the \c ctype_base::space category. \param Loc A locale used for classification \return An instance of the \c is_classified predicate */
| 54 | \return An instance of the \c is_classified predicate |
| 55 | */ |
| 56 | inline detail::is_classifiedF |
| 57 | is_space(const std::locale& Loc=std::locale()) |
| 58 | { |
| 59 | return detail::is_classifiedF(std::ctype_base::space, Loc); |
| 60 | } |
| 61 | |
| 62 | //! is_alnum predicate |
| 63 | /*! |
no test coverage detected