Avatar
@swiftbot extension Sequence { public func compact<T>() -> [T] where Element == Optional<T> { return _compactMap { $0 } } } let b: [Int] = [] print(b.compact)
🛠 1