【发布时间】:2016-04-02 06:40:38
【问题描述】:
exposition only 在 C++ 标准中的确切含义是什么?这是否意味着标记为 exposition only 的私有/受保护成员必须按照标准存在,或者它们只是实施的“建议”,根本不需要?
示例包括:
std::error_code::val_
std::wstring_convert::byte_err_string
std::array::elems
std::move_iterator::current
std::reverse_iterator::current
std::ostream_iterator::delim
// And a lot of others
【问题讨论】:
标签: c++ c++11 standards c++-standard-library reverse-iterator