19 lines
285 B
Swift
19 lines
285 B
Swift
//
|
|
// File.swift
|
|
//
|
|
//
|
|
// Created by CH on 12.10.22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Optional {
|
|
|
|
func unwrap(or error: @autoclosure () -> Error) throws -> Wrapped {
|
|
guard let unwrapped = self else {
|
|
throw error()
|
|
}
|
|
return unwrapped
|
|
}
|
|
}
|