Assume `someValue = true`... These all evaluate to `true`: `if someValue` `if !someValue` `if someValue == true` `if someValue == false` Is this expected behavior? How can I check if a `bool` is `false` without using an `else` statement?