1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2014-09-04 22:15:29 +04:00
|
|
|
** $Id: ltable.h,v 2.19 2014/07/29 16:22:24 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Lua tables (hash)
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltable_h
|
|
|
|
#define ltable_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
|
2003-03-18 15:50:04 +03:00
|
|
|
#define gnode(t,i) (&(t)->node[i])
|
|
|
|
#define gval(n) (&(n)->i_val)
|
2006-01-10 15:51:53 +03:00
|
|
|
#define gnext(n) ((n)->i_key.nk.next)
|
2004-10-06 22:34:16 +04:00
|
|
|
|
2014-07-29 20:22:24 +04: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-18 00:26:47 +04:00
|
|
|
#define invalidateTMcache(t) ((t)->flags = 0)
|
|
|
|
|
2001-08-31 00:56:43 +04:00
|
|
|
|
2013-08-30 20:01:37 +04: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 19:39:25 +04: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 22:15:29 +04:00
|
|
|
TValue *value);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
|
|
|
|
LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
|
2011-08-18 00:26:47 +04:00
|
|
|
LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
|
2005-04-25 23:24:10 +04:00
|
|
|
LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
|
2006-07-11 19:53:29 +04:00
|
|
|
LUAI_FUNC Table *luaH_new (lua_State *L);
|
2014-09-04 22:15:29 +04: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 23:24:10 +04: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 14:53:40 +04:00
|
|
|
|
2006-01-10 15:51:53 +03:00
|
|
|
|
2006-01-10 16:13:06 +03: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 15:51:53 +03:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|