本文整理汇总了C++中map_t::size方法的典型用法代码示例。如果您正苦于以下问题:C++ map_t::size方法的具体用法?C++ map_t::size怎么用?C++ map_t::size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类map_t
的用法示例。
在下文中一共展示了map_t::size方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Exception
void ModuleNcurses::display(map_t const & map)
{
uint x;
if (werase(this->win) == ERR)
throw Exception(strerror(errno));
for (uint y = 0; y != map.size() ; ++y)
{
for (x = 0; x != map.size() ; ++x)
display_slot(x, y, map[y][x]);
}
if (wrefresh(this->win) == ERR)
throw Exception(strerror(errno));
}
示例2: 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;
}
示例3: size
// return the number of operators
int size() const { return map_index_n.size(); }
示例4: size
// number of elements
size_t size() {
return map->size();
}