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 |
Tags
- Swift closure
- Associated Value
- Clean swift
- Raw value and Associated value
- iOS Static Library
- persistentStoreCoordinator
- leetcode #01
- Swift LinkedList
- CoreData Concurrency
- CoreData
- 스위프트 클로저
- CoreData Stack
- NSSortDescriptor
- expensive operation
- 일급 객체
- Swift 고차함수
- iOS Static Library 사용하는방법
- NSManagedObject SubClass
- Persistent store Coordinator
- 1009번
- dateFormatter
- 2022 부스트캠프
- Swift
- LightWeight Migration
- CoreData Filter
- 트레일링 클로저
- 다익스트라 이해
- Java
- codability
- NSPredicates
Archives
- Today
- Total
목록Collections (1)
하루를살자

Collection Types Swift 는 collection 의 값들을 저장하는 3가지의 기본 collection type 을 가지고 있다. 1. Arrays --> Collection 의 값들이 순서 있게 저장됨. 2. Sets --> 유니크 한 collection 값들이 순서 없이 저장됨. 3. Dictionary --> Key-Value 로 되어있는 collection 들이 순서 없이 저장됨. - 위의 3가지 타입들은 Swift 에서 저장 할수 있는 값들의 의 타입과 key 에 대해서 민감하다. 이는, 잘못된 타입을 collection 에 넣는것을 방지해주고, 사용자가 항상 어떤 타입의 값들을 해당 collection 에서 받을지, 넣어줄지 확신 할수 있게 해준다. Mutability of Co..
Swift
2022. 1. 1. 00:15