We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
These functions extend from the current Map object/class from greyscript.
The following are a list of new functions that can be utilized.
Will return the key that has the longest value.
print({"a" : 123, "b": 1}.max) -- "a"
Will return the key that has the shortest value.
print({"a" : 123, "b": 1}.max) -- "b"
There was an error while loading. Please reload this page.