[Swift] typealias
2023. 3. 4. 12:25ㆍ🍏/Swift
Typealias
타입의 별명을 지정
typealias Coordinate = (x: Int, y: Int)
typealias Size = Int
typealias Vactor = (Coordinate, Size)
typealias Force = (() -> (Void))
func weight() {print("W")}
func calculate(_ vactor: Vactor) -> Force {return weight}
let c = calculate(((0, 0), 0))
c()
'🍏 > Swift' 카테고리의 다른 글
[Swift] NamingConvention / 명명 규약 (0) | 2023.04.04 |
---|---|
[Swift] Understanding Swift Performance / WWDC 16 (0) | 2023.03.09 |
[Swift] SIMD는 무엇이고 어떻게 사용하는가 ? (0) | 2023.03.03 |
[Swift] 소수점 표현 올림(ceil), 반올림(round), 내림(floor), 포맷(format) (0) | 2023.03.03 |
[Swift] 타입 캐스팅 / Type Casting / Up casting / Down Casting (0) | 2022.09.02 |