1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2006-01-10 04:51:53 -08:00
|
|
|
** $Id: ltable.h,v 2.8 2005/06/06 13:30:25 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])
|
2006-01-10 04:51:53 -08:00
|
|
|
#define gkey(n) (&(n)->i_key.nk)
|
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
|
|
|
|
2006-01-10 04:51:53 -08:00
|
|
|
#define key2tval(n) (&(n)->i_key.tvk)
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2001-08-30 13:56:43 -07:00
|
|
|
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC const TValue *luaH_getnum (Table *t, int key);
|
|
|
|
LUAI_FUNC TValue *luaH_setnum (lua_State *L, Table *t, int key);
|
|
|
|
LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
|
|
|
|
LUAI_FUNC TValue *luaH_setstr (lua_State *L, Table *t, TString *key);
|
|
|
|
LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
|
|
|
|
LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
|
|
|
|
LUAI_FUNC Table *luaH_new (lua_State *L, int narray, int lnhash);
|
|
|
|
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
|
|
|
|
|
|
|
/* exported only for debugging */
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC Node *luaH_mainposition (const Table *t, const TValue *key);
|
1998-07-12 09:15:19 -07:00
|
|
|
|
2006-01-10 04:51:53 -08:00
|
|
|
#define luaH_dummynode (&luaH_dummynode_)
|
|
|
|
|
|
|
|
LUAI_DATA const Node luaH_dummynode_;
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
#endif
|