I am getting a warning saying my constant is unused:
Initialization of immutable value 'myConst' was never used; consider replacing with assignment to '_' or removing it
if someVal["value"] != nil {
let myConst = someVal["value"]
}
So what will renaming let myConst = someVal["value"]
into _ myConst = someVal["value"]
do/mean?
You're not replacing let with _
, but you're replacing the variable name with it. If the variable isn't used anywhere in the code it's irrelevant so the line can be written like:
_ = someVal["value"]
If you want to use it somewhere you need a name for it to reference it later on. But when you don't use it writing _
is a lot easier ...
we can use Wildcard Pattern ' _ ' for unused constant warings
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With