Commit Graph

  • 4c63db7360 Fixed up makefile for linux and added fallthrough comment master Bruce Hill 2020-04-21 00:22:02 -0700
  • 915eb75910 Switched default Lua location to /usr/local instead of /opt/local, which is a weird homebrew-specific thing. Bruce Hill 2018-07-22 00:20:04 -0700
  • 2b64555e1c Removed dependency on lua_rotate() for compatibility with Lua 5.1 Bruce Hill 2018-07-22 00:19:24 -0700
  • 2320f87324 Working version of storing {k=v} style for instance tables and removing __indices. Bruce Hill 2018-06-05 15:44:00 -0700
  • 898f92d20a Updated rockspec and documentation. Bruce Hill 2018-06-04 19:13:05 -0700
  • 76a85ad613 Renamed GET macro to avoid potential namespace collisions. Bruce Hill 2018-06-04 18:51:12 -0700
  • 88ed3df58c Overhaul to remove duplicated code and ensure speedier constructor calls for duplicate tables. Bruce Hill 2018-06-04 18:35:11 -0700
  • a3fcf87b2c Initial working version. Bruce Hill 2018-06-04 00:45:56 -0700
  • 2a3ed541e7 Added "raw" versions of metamethods, so the original can be easily accessed when overriding a metamethod. Bruce Hill 2018-06-01 15:17:59 -0700
  • 156d88a020 Switched hash to be stored in an 'int' instead of 'unsigned long long', so that it interacts consistenly with rawgeti and rawseti in Lua 5.1 api. Bruce Hill 2018-05-04 16:59:43 -0700
  • 6e6e38ad1f Updated singleton recipe. Bruce Hill 2018-04-23 16:49:09 -0700
  • ac97c42ab6 Updated singleton doc. Bruce Hill 2018-04-23 16:48:28 -0700
  • dc2f524d29 Updated to include info about __hash. Bruce Hill 2018-04-23 16:46:58 -0700
  • b06b127ce5 Added __hash method. Bruce Hill 2018-04-23 16:44:04 -0700
  • dec3dc205f Added __missing metamethod and updated tests. Bruce Hill 2018-04-23 16:21:47 -0700
  • 6f3ff65ae7 Updated tests to work better with different Lua versions. Bruce Hill 2018-04-23 15:45:37 -0700
  • c88d4a9dd6 Updated tests to include trailing nil. Bruce Hill 2018-04-23 15:17:58 -0700
  • 9144735dbb More correct version of __ipairs and __pairs when iterating over tables with holes. Bruce Hill 2018-04-23 15:16:49 -0700
  • 86cf46e70b Cleaned up code around Tuples (immutables with unnamed variable numbered fields) and printing. Also fixed a pernicious off-by-one bug in the hash function. Bruce Hill 2018-04-20 14:31:58 -0700
  • 275ed3761b Added luarocks info. Bruce Hill 2018-03-16 15:56:12 -0700
  • eb2b874915 Adjusting wording. Bruce Hill 2018-03-16 15:54:15 -0700
  • 5b486d4d69 Moved implementation doc into a different file. Bruce Hill 2018-03-16 15:49:29 -0700
  • b77e4bdbe5 Updated doc. Bruce Hill 2018-03-16 15:46:55 -0700
  • 13283e5ee9 More doc. Bruce Hill 2018-03-16 15:29:25 -0700
  • 14a40ce979 Updated doc. Bruce Hill 2018-03-16 15:27:58 -0700
  • 0030c0bc4f Misc changes. Bruce Hill 2018-03-16 15:05:40 -0700
  • f4c8b30d51 Updated doc. Bruce Hill 2018-02-28 17:19:45 -0800
  • 096973f06d Cleanup/fixes for from_table(). Bruce Hill 2018-02-27 13:47:06 -0800
  • 1a06de84dd Updated doc. Bruce Hill 2018-02-15 16:16:06 -0800
  • 99c379870f Added test. Bruce Hill 2018-02-15 15:51:14 -0800
  • 8634549e77 Changed up the API to allow immutable(nil) for tuples and otherwise handle length a bit differently. Bruce Hill 2018-02-15 15:49:42 -0800
  • 69631d8d56 Switched lua_absindex() to lua_gettop() for compatibility with 5.1 Bruce Hill 2018-02-14 14:22:47 -0800
  • 02f708cb04 Added more lenience for creating huge tables. The test shouldn't fail if creating a giant table runs out of stack, but it definitely shouldn't segfault. Bruce Hill 2018-02-14 14:22:02 -0800
  • c0397a7bf7 Updated readme. Bruce Hill 2018-02-12 22:02:13 -0800
  • 45d410d00c Fixed some severe memory problems with slightly kludgey code. Classes now have a weak-keyed __buckets field that maps udata->bucket, and buckets now get auto-collected by GC. __gc metamethod is now gone. Bruce Hill 2018-02-12 21:59:01 -0800
  • 565250d326 Fix for tostring relying on stack indices, and some general cleanup. Bruce Hill 2018-02-12 20:44:18 -0800
  • da4dbf89c2 Updated performance. Bruce Hill 2018-02-12 17:16:36 -0800
  • bd5ed55ebd Fixed some edge case stuff with varargs, and added incremental GC. Bruce Hill 2018-02-12 17:16:06 -0800
  • 2630b3ad1d Cleaned up. Bruce Hill 2018-02-12 16:37:50 -0800
  • b4bc3065d5 Updated docs. Bruce Hill 2018-02-12 02:31:08 -0800
  • 04c20ab009 Optimizations of instantiation (no longer creates table until necessary). Bruce Hill 2018-02-11 17:22:00 -0800
  • fa456525df Fixed bug in float hashing logic. Bruce Hill 2018-02-11 17:02:58 -0800
  • 2ff4152415 Added lua markdown. Bruce Hill 2018-02-11 16:50:03 -0800
  • df98ddebd0 Optimized the inst constructor a little bit, cleaned up the shared bucket metatable, and added a shared class metatable that has a helpful tostring. Bruce Hill 2018-02-11 16:45:26 -0800
  • 0f72014571 Added better support for tuple-like immutable tables. Updated docs and tests. Bruce Hill 2018-02-11 14:56:28 -0800
  • 139e214b1f Cleaned up makefile. Bruce Hill 2018-02-11 14:11:11 -0800
  • 95306419d7 Added license Bruce Hill 2018-02-11 13:50:00 -0800
  • 47f526aaf0 Renamed Bruce Hill 2018-02-11 13:43:42 -0800
  • 118ab70612 More tests. Bruce Hill 2018-02-11 13:42:45 -0800
  • 96e1d36f37 Added support for unpack() in lua 5.3, fixed a bug in tostring, and added is_instance(). Bruce Hill 2018-02-11 13:41:37 -0800
  • 1b43ee552b Cleaned up argument parsing. Bruce Hill 2018-02-10 17:04:43 -0800
  • 4188c2164d Added slightly more error checking. Bruce Hill 2018-02-10 16:48:58 -0800
  • 21d8c27e73 Improving hash. Bruce Hill 2018-02-10 16:37:26 -0800
  • e7e59d4b0e Keep tostring on the stack to avoid looking it up multiple times in the __tostring loop. Bruce Hill 2018-02-10 15:56:03 -0800
  • dadbf86640 Updated doc. Bruce Hill 2018-02-10 00:12:18 -0800
  • fbc31fecea Added test for __index. Bruce Hill 2018-02-09 19:05:29 -0800
  • b58bd5a12e Cleanup and compressing methods/metamethods into the same thing. Bruce Hill 2018-02-09 19:03:10 -0800
  • 468b6a83bb Removed dead code. Bruce Hill 2018-02-09 18:32:57 -0800
  • 526c5e7373 Fixed Lua 5.1 compatibility with lua_len() and cleaned up makefile so it doesn't test by default. Bruce Hill 2018-02-09 18:29:21 -0800
  • 291d7fd420 Updated tests. Bruce Hill 2018-02-09 18:24:14 -0800
  • 7cb9ccc223 Added from_table() Bruce Hill 2018-02-09 18:21:49 -0800
  • bf95f0e317 Renamed __field_positions -> __indices Bruce Hill 2018-02-09 18:02:28 -0800
  • 0ef2794f2a Fixed #, switched over to __instance_positions, deleted :new(). Bruce Hill 2018-02-09 18:01:01 -0800
  • cd479f05fd Added __ipairs Bruce Hill 2018-02-09 17:10:14 -0800
  • 0f15ee34d7 Added default tostring. Bruce Hill 2018-02-09 16:46:33 -0800
  • 8050fa3804 Added rockspec. Bruce Hill 2018-02-09 16:07:58 -0800
  • 1da889f65a For now, switching back to __instances instead of HASH_BUCKETS, because it's cleaner and not *much* slower. Bruce Hill 2018-02-09 15:59:22 -0800
  • 5c8d0fd69a Lots of cleanup. Got rid of instances. Bruce Hill 2018-02-09 15:57:34 -0800
  • 9172b8ceae Clarifying dependencies. Bruce Hill 2018-02-09 05:38:42 -0800
  • 92de9f98b6 Added readme. Bruce Hill 2018-02-09 05:32:07 -0800
  • 8e23cf25cc Added compatibility for luajit. Bruce Hill 2018-02-09 05:22:27 -0800
  • 83eece29e4 Cleaned up code. Bruce Hill 2018-02-09 03:48:44 -0800
  • f70a86f0b2 More dots. Bruce Hill 2018-02-09 03:46:11 -0800
  • 1e05aa9cfd Made real pretty. Bruce Hill 2018-02-09 03:45:31 -0800
  • e1677d2195 Updated to take lua as a parameter to make. Bruce Hill 2018-02-09 03:45:17 -0800
  • 5074828c3d Added conditional compilation so it works for Lua 5.1, 5.2, 5.3 Bruce Hill 2018-02-09 02:43:58 -0800
  • 9db58c6b8a Initial commit. Bruce Hill 2018-02-09 02:13:07 -0800