1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2014-09-04 11:15:29 -07:00
|
|
|
** $Id: ltable.h,v 2.19 2014/07/29 16:22:24 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])
|
|
|
|
#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
|
|
|
|
2014-07-29 09:22:24 -07:00
|
|
|
|
|
|
|
/* 'const' to avoid wrong writings that can mess up field 'next' */
|
|
|
|
#define gkey(n) cast(const TValue*, (&(n)->i_key.tvk))
|
|
|
|
|
|
|
|
#define wgkey(n) (&(n)->i_key.nk)
|
|
|
|
|
2011-08-17 13:26:47 -07:00
|
|
|
#define invalidateTMcache(t) ((t)->flags = 0)
|
|
|
|
|
2001-08-30 13:56:43 -07:00
|
|
|
|
2013-08-30 09:01:37 -07:00
|
|
|
/* returns the key, given the value of a table entry */
|
|
|
|
#define keyfromval(v) \
|
|
|
|
(gkey(cast(Node *, cast(char *, (v)) - offsetof(Node, i_val))))
|
|
|
|
|
|
|
|
|
2013-04-26 08:39:25 -07:00
|
|
|
LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
|
|
|
|
LUAI_FUNC void luaH_setint (lua_State *L, Table *t, lua_Integer key,
|
2014-09-04 11:15:29 -07:00
|
|
|
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);
|
2014-09-04 11:15:29 -07:00
|
|
|
LUAI_FUNC void luaH_resize (lua_State *L, Table *t, unsigned int nasize,
|
|
|
|
unsigned int nhsize);
|
|
|
|
LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize);
|
2005-04-25 12:24:10 -07:00
|
|
|
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
|