반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- nonisolated
- subject
- URL(string:)
- init
- init?
- IOS
- RxCocoa
- SwiftUI
- Bug
- Operators
- @State
- NullObject
- @Environment
- @EnvironmentObject
- ios14
- vim
- nestjs
- operator
- @Binding
- graphql
- typeorm
- Xcode
- Operater
- dismiss
- swift6
- Creating Operators
- RxSwift
- NavigationLink
- SWIFT
- RFC1738/1808
Archives
- Today
- Total
목록associatedtype (1)
Tunko Development Diary
associatedtype 이란?
우선 associatedtype 타입은 제네릭에서 사용되는 타입입니다. associatedtype은 연관타입이라고 불리며. 연관타입은 프로토콜의 일부분으로 타입에 플레이스홀더 이름을 부여합니다. 다시 말해 특정 타입을 지정해 사용할 수 있습니다. 연관타입의 실제 사용예시입니다. protocol Container { associatedtype Item mutating func append(_ item: Item) var count: Int { get } subscript(i: Int) -> Item { get } } struct IntStack: Container { // original IntStack implementation var items = [Int]() mutating func push(_ i..
Development/iOS 개발
2022. 6. 17. 23:42