本文整理汇总了C++中EMap::find方法的典型用法代码示例。如果您正苦于以下问题:C++ EMap::find方法的具体用法?C++ EMap::find怎么用?C++ EMap::find使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EMap
的用法示例。
在下文中一共展示了EMap::find方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: from_string
static E from_string( const std::string &value )
{
const auto iter = BINDINGS.find( value );
if( iter == BINDINGS.end() ) {
// This point shall not be reached. Always call this with valid input.
return BINDINGS.begin()->second;
}
return iter->second;
}
示例2: index
static int index( lua_State * const L )
{
// -1 is the key (funtion to call)
const char * const key = lua_tostring( L, -1 );
if( key == nullptr ) {
luaL_error( L, "Invalid input to __index: key is not a string." );
}
const auto iter = BINDINGS.find( key );
if( iter == BINDINGS.end() ) {
return luaL_error( L, "Invalid enum value." );
}
lua_remove( L, -1 ); // remove key
// Push the enum as string, it will be converted back to the enum later. This way, it can
// be specified both ways in Lua code: either as string or via an entry here.
lua_pushlstring( L, iter->first.c_str(), iter->first.length() );
return 1;
}