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
- UserDefaults
- ReferceCycle
- NavigationSearchBar
- firebase
- 롤케이크 자르기
- coremotion
- class struct
- til
- @escaping
- SWIFT
- 양궁대회
- CoreData
- Value Type Reference Type
- Reference Cycle
- Input Output
- Carousel CollectionView
- UIKit
- wil
- 면접을 위한 CS전공 지식 노트
- TableView
- 프로그래머스
- retain cycle
- 강한 참조 순환
- tableview section별 다른 cell적용
- 테이블뷰 나누기
- 면접을 위한 CS 전공 지식 노트 Tree
- 자료구조
- Array vs Linked List
- TableView Section
- CarouselCollectionview
Archives
- Today
- Total
목록RESULT (1)
개발하는 동글 :]
[TIL],[Swift],[Result 타입 파보기]
TIL Result 타입의 내부 @frozen public enum Result { case success(Success) case failure(Failure) @inlinable public func map( _ transform: (Success) -> NewSuccess ) -> Result { switch self { case let .success(success): return .success(transform(success)) case let .failure(failure): return .failure(failure) } } @inlinable public func mapError( _ transform: (Failure) -> NewFailure ) -> Result { switch se..
카테고리 없음
2023. 8. 23. 10:39