OR
code:lua
OR(a,b)
table:
戻り値 integer a | b
a,bのビット和を返す
実装例
code:cpp
int l_OR(lua_State* L) {
unsigned int a = luaL_checkinteger(L,1);
unsigned int b = luaL_checkinteger(L,2);
lua_pushinteger(L, a | b);
return 1;
}
tips
LuaJITやBitOPが使える環境ではbit.borを使うべきである 関連項目