Avatar
extension<T> Sequence where Element == T? { func compact() -> [T] { return compactMap { $0 } } }
1:22 AM
同じことを書いてた・・・