It would be nice to have an equivalent of llList2List as part of the table API
Fizz Savira
Something like table.slice(src: {...}, from: number, to: number) -> {...}
Or maybe table.slice(src: {...}, start: number, amount: number?) -> {...} where amount is optional and works like string.sub(...)
Log In
Tapple Gao
ll.List2List(list, a, b)
is exactly equivilant to
{unpack(list, a, b)}
except I usually don't even need the surrounding '{}', because I'd rather have the values inside the list as local variables
SuzannaLinn Resident
I vote for
table.slice(src: {...}, from: number, to: number?) -> {...}
, with to
defaulting to #src