Boost C++ 库

...世界上最受推崇和设计精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu,《C++ 编码规范

函数 is_classified - Boost C++ 函数库
PrevUpHomeNext

函数 is_classified

boost::algorithm::is_classified — is_classified 断言

提要

// In header: <boost/algorithm/string/classification.hpp>


unspecified is_classified(std::ctype_base::mask Type, 
                          const std::locale & Loc = std::locale());

描述

构造 is_classified 断言。如果输入属于指定的 std::ctype 类别,则此断言成立。

参数

类型

一个 std::ctype 类别

位置

用于分类的区域设置

返回

一个 is_classified 谓词实例


PrevUpHomeNext