本文整理汇总了C++中map_t::cend方法的典型用法代码示例。如果您正苦于以下问题:C++ map_t::cend方法的具体用法?C++ map_t::cend怎么用?C++ map_t::cend使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类map_t
的用法示例。
在下文中一共展示了map_t::cend方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: to
static std::uint32_t to(state_t &state, const map_t &map_val)
{
::lua_createtable(state, (int)map_val.size(), (int)map_val.size());
std::for_each(map_val.cbegin(), map_val.cend(),
[&state](const typename map_t::value_type &val)
{
convertion_t<typename map_t::key_type>::to(state, val.first);
convertion_t<typename map_t::mapped_type>::to(state, val.second);
::lua_settable(state, -3);
});
return map_val.size() == 0 ? 0 : 1;
}
示例2: cend
const_iterator cend() const noexcept { return map_index_n.cend(); }