Redundant Nil Coalescing

Coalescing operator with right-hand side nil is redundant

  • Identifier: redundant_nil_coalescing
  • Enabled by default: No
  • Supports autocorrection: Yes
  • Kind: idiomatic
  • Analyzer rule: No
  • Minimum Swift compiler version: 5.0.0
  • Default configuration:
    KeyValue
    severity warning

Non Triggering Examples

var myVar: Int?; myVar ?? 0

Triggering Examples

var myVar: Int? = nil; myVar ?? nil