Skip to content

Files

Latest commit

 

History

History
23 lines (14 loc) · 311 Bytes

force_cast.md

File metadata and controls

23 lines (14 loc) · 311 Bytes

Pattern: Use of as!

Issue: -

Description

Force casts should be avoided.

Examples of correct code:

NSNumber() as? Int

Examples of incorrect code:

NSNumber() as! Int

Further Reading