示例#1
0
文件: lua.go 项目: szll/golua
// lua_typename
func (L *State) Typename(tp int) string {
	return C.GoString(C.lua_typename(L.s, C.int(tp)))
}
示例#2
0
文件: lauxlib.go 项目: 1lann/golua
// luaL_typename
func (L *State) LTypename(index int) string {
	return C.GoString(C.lua_typename(L.s, C.lua_type(L.s, C.int(index))))
}
示例#3
0
文件: state.go 项目: halturin/luajit
// Returns the name of the type encoded by the value tp, which must be one
// the values returned by Type.
func (s *State) Typename(tp int) string {
	return C.GoString(C.lua_typename(s.l, C.int(tp)))
}