We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
::Any...
When using ::Any... in a method definition, that argument is incorrectly flagged as "unused variable".
For example:
function my_function(::Any...) # ... end
This warning is suppressed if braces are used:
function my_function(::(Any...)) # ... end