Commit graph

44 commits

Author SHA1 Message Date
Kim Alvefur
a1f053229c util.array: Fix new() library function 2023-07-22 16:31:05 +02:00
Kim Alvefur
0d6c625f93 Merge 0.12->trunk 2023-06-10 13:06:05 +02:00
Kim Alvefur
cbed7dfdf5 util.array: Expose new() on module table
For consistency with other utils.

Consistency is good.
2023-06-10 12:14:12 +02:00
Kim Alvefur
a8a7be217a util.array: Change tostring format to [a,b,c]
Arrays in Lua do use { } but since __tostring is often user-facing it
seems sensible to use [ ] instead for consistency with many other
systems; as well as to allow the {a,b,c} formatting to be used by
util.set without being confused with util.array.
2023-04-06 16:27:37 +02:00
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Matthew Wild
edb6956ad5 util.array: Add :slice() method + tests
Behaviour follows the same logic as string.sub (so yes, 1-indexed).
2021-09-12 10:50:20 +01:00
Matthew Wild
b4ec6112e4 util.array: pluck: Support default value to avoid holes 2020-06-04 10:39:12 +01:00
Kim Alvefur
34098ab9da util.array: Fix equality metamethod in Lua 5.3
Lua 5.2 only used the __eq metamethod if both operands have the same
__eq, but Lua 5.3 will pick one from either operands that has one as
long as both are tables.

This results in array() == {} and all sorts of odd behavior, including
array() == util.json.null.

<MattJ> I think [array() == {}] should have the same semantics as {} == {}
2020-01-15 21:08:01 +01:00
Matthew Wild
e12a6cdb99 util.array: Add __div for parity with util.set 2018-10-21 15:38:55 +01:00
Matthew Wild
fbb11b868f util.array: Break long line 2018-10-19 13:31:00 +01:00
Kim Alvefur
15ba5f41b1 util.array: Add freeze metamethod 2018-10-12 00:51:52 +02:00
Kim Alvefur
d5e3920b6c util.array: Add a __name field to metatable 2018-02-16 08:23:15 +01:00
Kim Alvefur
72018f7be7 util.array: Add method for filtering out duplicate values 2017-03-31 17:29:08 +02:00
Matthew Wild
22cc92f437 util.array: Take advantage of table.move() 2022-03-18 15:22:00 +00:00
Kim Alvefur
0bf98e614f util.array: Add O(n) equality check metamethod 2017-03-16 19:09:57 +01:00
Kim Alvefur
71d4c99a5d util.array: Remove unused arguments [luacheck] 2016-10-18 15:16:30 +02:00
Kim Alvefur
53bcabeef5 util.array: Rename arguments to avoid name clash [luacheck] 2016-10-18 15:16:18 +02:00
Kim Alvefur
f4d50275c9 util.array: Just use table.remove as array:pop() 2015-12-23 08:39:22 +01:00
Kim Alvefur
1951ac9ea1 util.array: Fix minory style issues 2015-12-23 08:32:13 +01:00
Kim Alvefur
eaa823a597 util.*: Remove use of module() function, make all module functions local and return them in a table at the end 2015-02-21 10:36:37 +01:00
Kim Alvefur
e9fa1d1db3 util.array: Add type() local 2014-09-17 14:50:44 +02:00
Kim Alvefur
04699a3aa4 util.array: Improve array:reverse() and make it work as both method and non-mutating function 2013-10-06 23:18:54 +02:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Waqas Hussain
11684a2d6c util.array: Wrap tostring() output in {} (otherwise empty arrays print as ""). 2013-05-07 10:41:03 -04:00
Matthew Wild
65fafa7b63 util.array: Accept an iterator to the array constructor 2012-08-08 11:49:31 +01:00
Waqas Hussain
5a64ace81c util.array: Avoid globals. 2011-12-09 12:02:21 +05:00
Waqas Hussain
5cc76d9794 util.array: Make array:push() chainable. 2011-12-09 11:57:14 +05:00
Matthew Wild
f1f40bc3ca util.array: Expand some of the more basic methods to act more sensibly than their names suggested 2011-12-07 05:14:58 +00:00
Matthew Wild
f1f5f74ad3 util.array: Add pluck() method to pick a given property from each item 2011-12-07 05:04:55 +00:00
Matthew Wild
63d6d1a502 util.array: Fix array.collect() for iterators that expect initial value of var to be preserved 2011-09-25 00:21:22 +01:00
Waqas Hussain
b7e51a203d Monster whitespace commit (beware the whitespace monster). 2010-10-16 23:00:42 +05:00
Matthew Wild
2bc0606453 Update copyright headers for 2010 2010-03-22 17:06:15 +00:00
Matthew Wild
67ec7d93f0 util.array: Oh no it isn't! 2009-10-08 18:41:30 +01:00
Matthew Wild
73a4154d03 util.array: Small logic fix for array:filter() 2009-10-05 18:39:28 +01:00
Matthew Wild
04d29dacbc util.array: Fix for array:filter() (in-place filtering) 2009-10-05 17:56:31 +01:00
Matthew Wild
7acd1cae89 util.array: Per-array methods now always mutate the array, array.* return a mutated copy, and most methods (e.g. sort) now return the array 2009-10-05 14:38:04 +01:00
Matthew Wild
e45610ce6e Add copyright header to those files missing one 2009-07-10 03:08:38 +01:00
Matthew Wild
7d05900c4b util.array: Add support for + operator to create a new array from two arrays joined 2009-06-20 22:47:12 +01:00
Matthew Wild
38f157315a util.array: Make array:reverse() and array:shuffle() return the array to allow chaining 2009-06-20 22:45:07 +01:00
Matthew Wild
72331edf3e util.array: Add array:append() method, to append a new array to an existing one 2009-06-20 22:43:54 +01:00
Matthew Wild
1ce9466289 util.array: Add array.collect() to collect results from iterators into an array, and use module() to correctly set the module name 2009-04-22 17:46:17 +01:00
Matthew Wild
cb2b5ec86f util.array: Add :reverse() method 2009-03-29 13:50:59 +01:00
Matthew Wild
3ab003a514 util.array: Expose array.* functions, to be used for unwrapped arrays 2009-03-26 03:55:45 +00:00
Matthew Wild
7b1eacf880 util.array: New array library 2009-03-25 03:00:09 +00:00