Assume I have a function that returns multiple values. I happen to be working with LÖVE's (Image):getDimensions
. This returns two values, which I know to be width,height
. I want to assign them to a new table, as an array. I would like named (string) keys. So for instance, I would like to assign the return values of the getDimensions()
function to a new table with keys width
and height
, respectively.
I know the following works...
image = {}
image.data = love.graphics.newImage('myimage.png')
image.size = {}
image.size.width, image.size.height = image.data:getDimensions()
I'm wondering if there is any sort of syntactic sugar I can use, or any use of standard library functions that will allow a syntax more along the lines of...
image.size = { width, height = image.data:getDimensions() }
I know the above line does not work, along with many variations I've tried, including various attempts to use unpack()
. I'm new to Lua (~2 days in now), so maybe there is another standard function or best practice that I'm unaware of that will associate a table of keys to an array-like table. Thanks!
You can write your own functions:
Usage example #1:
Usage example #2:
Swap the values on-the-fly!
Usage example #3:
Usage example #4:
If
require("some_module")
returns a module with plenty of functions inside, but you need only a few of them: