Last updated 3 years ago
Was this helpful?
โฉ โฉ โฉ
typealias Component = String // result type: String static func buildFinalResult(_ component: Component) -> String { return component } // result type: Int static func buildFinalResult(_ component: Component) -> Int { return component.count }
Swift Senpai โฉ