AlmostForceUnwrap

1.0.0

Throwing force unwrap operator for Swift
Obbut/AlmostForceUnwrap

What's New

2018-09-14T13:47:53Z

AlmostForceUnwrap

Throwing force unwrap operator for Swift

This library defines a new postfix operator, , for Swift. It behaves like the the normal force unwrap operator(!) but instead of crashing your application, it throws an error.

let optionalString: String? = "Cheese"
let nonOptionalString: String = try optionalString⁉

Usage

Use the Swift Package Manager:

import PackageDescription

let package = Package(
    name: "MyApp",
    dependencies: [
        .Package(url: "https://github.com/Obbut/AlmostForceUnwrap.git", majorVersion: 0, minor: 1)
    ]
)

Import it:

import AlmostForceUnwrap

Now you can use the operator yourself.

Description

  • Swift Tools 4.2.0
View More Packages from this Author

Dependencies

  • None
Last updated: Fri Apr 12 2024 11:01:43 GMT-0900 (Hawaii-Aleutian Daylight Time)