summaryrefslogtreecommitdiff
path: root/ltable.c
Commit message (Expand)AuthorAgeFilesLines
* Removed extra information from RCS keyword stringsRoberto Ierusalimschy2018-08-231-1/+1
* warning (comparison between signed and unsigned integers)Roberto Ierusalimschy2018-06-151-2/+3
* field 'sizearray' in struct 'Table' changed to 'alimit', which canRoberto Ierusalimschy2018-06-151-36/+161
* no more 'luaH_emptyobject' and comparisons of addresses of global variablesRoberto Ierusalimschy2018-06-011-9/+10
* new macros 'likely'/'unlikely' with hints for jump predictionsRoberto Ierusalimschy2018-05-301-5/+6
* detail ('l_castU2S' should only be used over lua_Unsigned values)Roberto Ierusalimschy2018-05-291-2/+2
* better names for macros for tags and types.Roberto Ierusalimschy2018-02-261-6/+6
* first version of empty entries in tablesRoberto Ierusalimschy2018-02-231-30/+33
* small reorganization of 'luaV_flttointeger'/'luaV_tointeger'Roberto Ierusalimschy2018-02-211-4/+5
* more generic way to handle 'gclist'Roberto Ierusalimschy2018-02-191-2/+2
* janitor work on castsRoberto Ierusalimschy2018-01-281-5/+5
* another try with table resize.Roberto Ierusalimschy2017-12-291-41/+55
* more freedom in handling memory-allocation errors (not all allocationsRoberto Ierusalimschy2017-12-081-32/+63
* using explicit tests for allocation overflow whenever possibleRoberto Ierusalimschy2017-12-071-9/+29
* detail (typo in comments)Roberto Ierusalimschy2017-11-231-2/+2
* new function 'luaV_flttointeger' to convert floats to integers (withoutRoberto Ierusalimschy2017-11-081-3/+3
* new type 'StackValue' for stack elementsRoberto Ierusalimschy2017-06-291-6/+6
* no more 'DEADKEY'. Table traversals do not need to consider dead keys;Roberto Ierusalimschy2017-06-121-37/+27
* in hash nodes, keys are stored in separate pieces to avoid wastingRoberto Ierusalimschy2017-06-091-46/+85
* BUG: in 'computesizes', 'twotoi' overflows when a sequence hasRoberto Ierusalimschy2017-05-191-3/+6
* better implementation for 'hash_search', without using 'size_t'Roberto Ierusalimschy2017-05-191-28/+36
* reimplementation of 'luaH_getn', trying to handle numeric limitsRoberto Ierusalimschy2017-05-161-33/+44
* detail ('1' -> '1u' in unsigned operation)Roberto Ierusalimschy2017-05-091-2/+2
* using 'lastfree == NULL' to signal that table is using the dummyRoberto Ierusalimschy2016-11-071-23/+23
* details (typos in comments)Roberto Ierusalimschy2015-11-191-2/+2
* no need for a special case to get long strings (not that common)Roberto Ierusalimschy2015-11-031-22/+16
* added comment and assert about dead keysRoberto Ierusalimschy2015-11-031-2/+3
* bug: despite its name, 'luaH_getstr' did not work for strings inRoberto Ierusalimschy2015-11-031-16/+35
* avoid possibility of subtle arith. overflowRoberto Ierusalimschy2015-07-041-2/+2
* detailRoberto Ierusalimschy2015-07-011-2/+2
* comment (FALLTHROUGH position)Roberto Ierusalimschy2015-06-091-3/+3
* detail (removed useless '#include')Roberto Ierusalimschy2015-05-201-2/+1
* detail (comment)Roberto Ierusalimschy2015-04-021-2/+2
* janitor work (comments, variable names, some other details)Roberto Ierusalimschy2015-03-301-25/+31
* details (avoid 'lint' warnings)Roberto Ierusalimschy2015-03-301-2/+2
* 'point2int' -> 'point2uint' (to reflect its actual result type)Roberto Ierusalimschy2015-03-031-2/+2
* 'numisinteger' (for table keys) replaced by 'luaV_tointeger' (oldRoberto Ierusalimschy2015-02-201-17/+5
* make 'hashfloat' configurableRoberto Ierusalimschy2015-02-201-8/+8
* detail (file does not need 'string.h')Roberto Ierusalimschy2015-02-161-2/+1
* some changes in 'hashfloat' to avoid undefined (in ISO C) numericalRoberto Ierusalimschy2015-02-131-8/+21
* size of short strings stored in a single byte, to reduce the sizeRoberto Ierusalimschy2015-01-161-2/+2
* 'setkey' -> 'setnodekey' (to avoid conflicts with POSIX)v5.3.0v5-3-0Roberto Ierusalimschy2015-01-051-2/+2
* added include for 'lprefix.h', for stuff that must be added beforeRoberto Ierusalimschy2014-11-021-4/+6
* `name' in comments changed to 'name'Roberto Ierusalimschy2014-10-251-18/+18
* 'lua_numtointeger' -> 'lua_numbertointeger'Roberto Ierusalimschy2014-10-241-2/+2
* macros 'LUA_QL'/'LUA_QL' deprecatedRoberto Ierusalimschy2014-10-171-2/+2
* size for array part of a table ('sizearray') changed from 'int' toRoberto Ierusalimschy2014-09-041-59/+75
* details in commentsRoberto Ierusalimschy2014-08-011-2/+2
* simpler definition for 'setobj' (trust the compiler for the assignment)Roberto Ierusalimschy2014-07-291-4/+5
* type 'TString' refers directly to the structure inside the unionRoberto Ierusalimschy2014-07-181-11/+11