Lua functions can return multiple results :
a, b, c = unpack({'one', 'two', 'three'})
If I'm not interested in the third return value, I can choose to ignore it when calling the function :
a, b = unpack({'one', 'two', 'three'})
Is there a similar way to ignore the X first elements when calling the function ?
I could write this code if I only want the third return value, but I was wondering if a cleaner code exists :
_, _, c = unpack({'one', 'two', 'three'})