Boost C++ 库

“……世界上最受尊敬且经过专家设计的 C++ 库项目之一。” Herb SutterAndrei Alexandrescu, C++ 编码标准

PrevUpHomeNext

函数模板 operator>>

boost::parser::operator>>

概要

// In header: <boost/parser/parser.hpp>


template<typename Parser> 
  auto operator>>(char c, parser_interface< Parser > rhs);

描述

返回一个等价于 lit(c) >> rhs 的解析器。


PrevUpHomeNext