Max Cahill
62957a9270
[modified] PR #17 a little; simplified various unneeded sections and added comments
2021-04-14 17:06:31 +10:00
Alvaro Frias
dbadd9af83
Refactored rtrim and ltrim to use _whitespace_bytes table
2021-04-12 12:38:03 -03:00
Alvaro Frias Garay
6042e3a705
Renamed variable properly
2021-04-07 14:09:40 -03:00
Alvaro Frias Garay
fb4c187347
Added ends_with method to stringx
2021-04-07 13:59:42 -03:00
Alvaro Frias Garay
e8bb432999
Added ltrim and rtrim methods
...
complementary methods to trim
2021-04-05 23:43:35 -03:00
Max Cahill
41985928d2
[modified] timer
to support changing the time in reset
2021-03-12 21:44:09 +11:00
Max Cahill
89ad4c2dda
[added] pubsub
and timer
modules
2021-03-12 21:23:54 +11:00
Max Cahill
16c183ec31
[added] tablex.take_random
which is like pick_random
but removes the element
2021-03-09 20:07:41 +11:00
Max Cahill
24bcc78616
[added] tablex.append_inplace
and tablex.append
can both take variable numbers of tables
2021-03-05 12:07:28 +11:00
Max Cahill
290b39236c
[modified] stringx.starts_with to not generate garbage
2021-03-02 11:47:28 +11:00
Max Cahill
dfd1a1c69f
[added] stringx.starts_with
2021-03-02 11:45:19 +11:00
Max Cahill
eef0d8d126
Merge pull request #15 from pakeke-constructor/patch-1
...
Fixed `start` state inclusion in state_machine
2021-01-25 10:41:37 +11:00
pakeke-constructor
f4a924aced
Fixed start
state inclusion in state_machine
2021-01-25 12:22:37 +13:00
Max Cahill
7185a91fc5
[dev] note about oklab colour space
2021-01-15 16:22:01 +11:00
Max Cahill
d5938f098e
Happy new year!
2021-01-08 17:06:44 +11:00
Max Cahill
9bb2f0367d
[modified] readme
2021-01-05 15:20:55 +11:00
Max Cahill
70d6a99891
[modified] state machine api; no longer gets the machine on all callbacks.
...
benefit is being able to use a plain old class with `:update(dt)` as a state, and therefore nest state machines directly without a wrapper.
2020-12-01 15:33:22 +11:00
Max Cahill
f3038d5bc0
Merge pull request #13 from speakk/patch-1
...
Mention varargs being passed into state callbacks
2020-12-01 09:15:33 +11:00
speak
af60cf26cf
Mention varargs being passed into state callbacks
2020-11-30 23:04:19 +02:00
Max Cahill
8be736d992
[added] stringx.apply_template for "$template_var" containing strings
2020-11-19 17:18:38 +11:00
Max Cahill
01ffdc09cd
[added] stringx.trim
2020-11-12 16:36:06 +11:00
Max Cahill
baa71bdf4e
[added] stringx.deindent (and alias dedent)
2020-11-12 14:32:56 +11:00
Max Cahill
5335b6fbdd
Merge remote-tracking branch 'origin/feature/functional-refactor' into master
2020-11-12 14:32:34 +11:00
Max Cahill
b45f606cdf
[fixed] regressions in functional.lua
2020-11-12 13:50:30 +11:00
Max Cahill
a810bf4ce5
[modified] unnecessary use of cached table length for many functions
2020-11-11 13:38:52 +11:00
Max Cahill
715765003d
[modified] moderate functional refactor (BREAKING)
...
- modified functional.reduce signature; takes seed value before function now as this results in much more readable calling code
- added filter_inplace and aliased remap as map_inplace to make semantics more clear
- rewrote many functions to use numeric for as a tiny speed boost at the cost of library code readability
[modified] sequence to be compatible
2020-11-10 20:51:43 +11:00
Max Cahill
1eaf77ad7a
[fixed] assert was not exported upon :export()
2020-11-10 20:48:40 +11:00
Max Cahill
cd1f9f097a
[added] mathx.length, mathx.distance for "inline" geometry stuff
2020-09-02 13:34:10 +10:00
Max Cahill
699affd1ad
[added] set:size and set:get(index)
2020-08-29 21:12:56 +10:00
Max Cahill
5f124be2f0
[added] tablex.trim to trim a table to a certain length
2020-08-24 20:54:43 +10:00
Max Cahill
028b21ef9a
[added] set:to_table which returns the ordered contents unchanged and intentionally disables the set object itself
2020-08-24 20:54:24 +10:00
Max Cahill
e957a4502f
[added] colour.distance_rgb and distance_packed_rgb
2020-08-18 19:54:24 +10:00
Max Cahill
324a5b4783
[dev]
2020-08-12 20:27:28 +10:00
Max Cahill
616b31b35f
[fixed] missing exports for some aliases, simplified export
2020-08-09 19:49:24 +10:00
Max Cahill
b4e2cff498
[added] mathx.bilerp which does a bilinear interpolation from 4 samples
2020-07-27 21:47:06 +10:00
Max Cahill
84197b5216
[added] proper tracebacks to errors in async tasks with xpcall (only works for functions with :call, not coroutines with :add)
2020-07-24 09:15:28 +10:00
Max Cahill
8c5fa157c7
[dev] note about strings with spaces being a potential problem with pretty printer; they arent re-parse friendly at the moment
2020-07-22 20:51:54 +10:00
Max Cahill
a18691f229
[modified] async stall resume behaviour implemented in terms of a tail call
2020-07-17 22:47:42 +10:00
Max Cahill
9e8793668f
[modified] async task error format easier to read - still need to move to embedded xpcall+stacktrace for more than 1 line of context though!
2020-07-15 14:16:55 +10:00
Max Cahill
5230e8f9d6
[fixed] mathx.wrap over-complicated impl, mathx.round (thanks @MikuAuahDark/@sharpobject)
2020-07-09 15:32:42 +10:00
Max Cahill
7d3b568ac5
[added] correct sequence support for collapse (and flatten)
2020-07-02 17:05:26 +10:00
Max Cahill
18d02434a0
[added] tablex.flatten as an alias for collapse
2020-07-02 17:04:47 +10:00
Max Cahill
d22cf7a66c
[modified] readme tweaks
2020-06-29 14:21:25 +10:00
Max Cahill
e87055bc79
[modified] readme, clarifying installation and versioning
2020-06-29 14:16:58 +10:00
Max Cahill
04563ed4b7
[modified] stringx.pretty handles embedded tables better (still likely needs a wrap width instead of an element count per line)
2020-06-19 15:17:24 +10:00
Max Cahill
ab93bcef6b
[modified] per-section clarifications in readme
2020-06-15 22:28:53 +10:00
Max Cahill
4d042c58dd
[added] spacing on readme module sections
2020-06-15 22:23:22 +10:00
Max Cahill
b63cb34f41
Merge remote-tracking branch 'origin/master'
2020-06-15 21:11:23 +10:00
Max Cahill
ba221060c5
[modified] colour fairly extensively; renamed functions to same snake_case convention as other modules
...
[added] colour.hsl_to_rgb
2020-06-15 21:11:05 +10:00
Max Cahill
e9313f61e0
[added] reset state upon re-entering state machine as_state
2020-06-11 15:35:57 +10:00