実際に使うかは置いておいて、おしゃれな NOT 文の書き方を Twitter で見つけたのでメモ

let not = (!)

let isValid = false

if not(isValid) {
    print("invalid")
}