本文整理汇总了C++中value_type::end方法的典型用法代码示例。如果您正苦于以下问题:C++ value_type::end方法的具体用法?C++ value_type::end怎么用?C++ value_type::end使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类value_type
的用法示例。
在下文中一共展示了value_type::end方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: format_forward
//! The function performs formatting of the extracted scope stack in forward direction
void format_forward(stream_type& strm, value_type const& scopes) const
{
value_type::const_iterator it, end = scopes.end();
if (m_depth > 0)
{
value_type::size_type const scopes_to_iterate = (std::min)(m_depth, scopes.size());
it = scopes.end();
std::advance(it, -static_cast< value_type::difference_type >(scopes_to_iterate));
}
else
{
it = scopes.begin();
}
if (it != end)
{
if (it != scopes.begin())
strm << m_incomplete_marker;
m_element_formatter(strm, *it);
for (++it; it != end; ++it)
{
strm << m_delimiter;
m_element_formatter(strm, *it);
}
}
}
示例2: get_origin
size_t get_origin(size_t i) const {
return std::find(
oneLineNotation.begin(),
oneLineNotation.end(),
i
) - oneLineNotation.begin();
}
示例3: encode
static void encode(util::OctetStream& output, value_type const& value)
{
output.append(value.begin(), value.end());
}