Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 287 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 287 Bytes

Swift Optional Tools

Some tools to make Optionals easier to use

Examples

Unwrap or throw an error

let image = try UIImage(named: "My Image").unwrappedOrThrow()
let color = try UIColor(named: "My Color").unwrappedOrThrow(error: ColorNotFoundError())