1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2011-08-17 13:26:47 -07:00
|
|
|
** $Id: ltable.h,v 2.15 2011/08/09 20:58:29 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Lua tables (hash)
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltable_h
|
|
|
|
#define ltable_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
|
2003-03-18 04:50:04 -08:00
|
|
|
#define gnode(t,i) (&(t)->node[i])
|
2009-11-06 09:07:48 -08:00
|
|
|
#define gkey(n) (&(n)->i_key.tvk)
|
2003-03-18 04:50:04 -08:00
|
|
|
#define gval(n) (&(n)->i_val)
|
2006-01-10 04:51:53 -08:00
|
|
|
#define gnext(n) ((n)->i_key.nk.next)
|
2004-10-06 11:34:16 -07:00
|
|
|
|
2011-08-17 13:26:47 -07:00
|
|
|
#define invalidateTMcache(t) ((t)->flags = 0)
|
|
|
|
|
2001-08-30 13:56:43 -07:00
|
|
|
|
2009-08-07 09:17:41 -07:00
|
|
|
LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
|
2011-08-09 13:58:29 -07:00
|
|
|
LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value);
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
|
|
|
|
LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
|
2011-08-17 13:26:47 -07:00
|
|
|
LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
|
2006-07-11 08:53:29 -07:00
|
|
|
LUAI_FUNC Table *luaH_new (lua_State *L);
|
|
|
|
LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize);
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize);
|
|
|
|
LUAI_FUNC void luaH_free (lua_State *L, Table *t);
|
|
|
|
LUAI_FUNC int luaH_next (lua_State *L, Table *t, StkId key);
|
|
|
|
LUAI_FUNC int luaH_getn (Table *t);
|
1999-10-26 03:53:40 -07:00
|
|
|
|
2006-01-10 04:51:53 -08:00
|
|
|
|
2006-01-10 05:13:06 -08:00
|
|
|
#if defined(LUA_DEBUG)
|
|
|
|
LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
|
|
|
|
LUAI_FUNC int luaH_isdummy (Node *n);
|
|
|
|
#endif
|
2006-01-10 04:51:53 -08:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
#endif
|