当前位置: 首页>>代码示例>>C++>>正文


C++ EMap::find方法代码示例

本文整理汇总了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;
 }
开发者ID:CrAzYPiLoT-SS13,项目名称:Cataclysm-DDA,代码行数:9,代码来源:catalua.cpp

示例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;
 }
开发者ID:CrAzYPiLoT-SS13,项目名称:Cataclysm-DDA,代码行数:17,代码来源:catalua.cpp


注:本文中的EMap::find方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。