Skip to content

Files

Latest commit

 

History

History
26 lines (15 loc) · 523 Bytes

redundant_nil_coalescing.md

File metadata and controls

26 lines (15 loc) · 523 Bytes

Pattern: Redundant nil coalescing

Issue: -

Description

nil coalescing operator is only evaluated if the left-hand side is nil, coalescing operator with nil as right-hand side is redundant.

Examples of correct code:

var myVar: Int?; myVar ?? 0

Examples of incorrect code:

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


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

Further Reading