lua/ltm.h

55 lines
1022 B
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: ltm.h,v 2.6 2005/06/06 13:30:25 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Tag methods
** See Copyright Notice in lua.h
*/
#ifndef ltm_h
#define ltm_h
#include "lobject.h"
1997-09-16 23:25:59 +04:00
/*
* WARNING: if you change the order of this enumeration,
* grep "ORDER TM"
1997-09-16 23:25:59 +04:00
*/
typedef enum {
TM_INDEX,
2002-05-28 00:35:40 +04:00
TM_NEWINDEX,
2001-12-05 23:15:18 +03:00
TM_GC,
TM_MODE,
TM_LEN,
2002-08-06 21:06:56 +04:00
TM_EQ, /* last tag method with `fast' access */
TM_ADD,
TM_SUB,
TM_MUL,
TM_DIV,
2005-03-08 21:00:16 +03:00
TM_MOD,
TM_POW,
TM_UNM,
TM_LT,
TM_LE,
TM_CONCAT,
2001-12-05 23:15:18 +03:00
TM_CALL,
TM_N /* number of elements in the enum */
} TMS;
2001-01-24 19:20:54 +03:00
2003-12-01 21:22:56 +03:00
#define gfasttm(g,et,e) ((et) == NULL ? NULL : \
((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e]))
#define fasttm(l,et,e) gfasttm(G(l), et, e)
1997-09-16 23:25:59 +04:00
2005-06-06 17:30:25 +04:00
LUAI_DATA const char *const luaT_typenames[];
1997-09-16 23:25:59 +04:00
LUAI_FUNC const TValue *luaT_gettm (Table *events, TMS event, TString *ename);
LUAI_FUNC const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o,
TMS event);
LUAI_FUNC void luaT_init (lua_State *L);
1997-09-16 23:25:59 +04:00
#endif