session-ios/SessionUtilitiesKit/General/General.swift

4 lines
150 B
Swift
Raw Normal View History

2020-12-06 23:29:46 +01:00
/// Returns `f(x!)` if `x != nil`, or `nil` otherwise.
public func given<T, U>(_ x: T?, _ f: (T) throws -> U) rethrows -> U? { return try x.map(f) }