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
- rxswift
- swift documentation
- 리펙토링
- Refactoring
- MVVM
- uitableview
- uiscrollview
- UICollectionView
- Xcode
- 애니메이션
- ribs
- map
- SWIFT
- 스위프트
- Clean Code
- clean architecture
- Protocol
- Human interface guide
- 리펙터링
- swiftUI
- Observable
- ios
- UITextView
- 리팩토링
- collectionview
- RxCocoa
- combine
- 클린 코드
- HIG
- tableView
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 2. Basic Operators (기본 연산자, Nil-Coalescing, One-Sided Ranges) 본문
swift 공식 문서
[iOS - swift 공식 문서] 2. Basic Operators (기본 연산자, Nil-Coalescing, One-Sided Ranges)
jake-kim 2021. 6. 17. 00:42튜플에서의 비교 연산자
- 튜플의 type이 각각 같은 경우 비교 가능
let first = (1, "a") > (2, "b") // false
let second = (1, "a") > (1, "b") // false
let third = (2, "c") > (1, "b") // true
Nil-Coalescing 연산자
- optional binding이라 하지 않고 Nil-Coalescing하는것을 주의
var data: String? = "test"
print(data ?? "default")
- Nil-Coalescing 연산자와 동일 코드
data != nil ? a! : b
One-Sided Ranges
- Index에서 접근
var names = [1, 2, 3, 4, 5]
for name in names[..<2] {
print(name)
}
- upperBound / lowerBound
var data = ...5
data // PartialRangeThrough<Int>(upperBound: 5)
data.contains(2) // true
data.contains(5) // true
data.contains(6) // false
var data2 = 5...
data2 // PartialRangeThrough<Int>(lowerBound: 5)
* 참고
https://docs.swift.org/swift-book/LanguageGuide/BasicOperators.html
'swift 공식 문서' 카테고리의 다른 글
[iOS - swift 공식 문서] 6. Functions (함수) (0) | 2021.06.23 |
---|---|
[iOS - swift 공식 문서] 5. Control flow (흐름 제어) (0) | 2021.06.21 |
[iOS - swift 공식 문서] 4. Collection Types (컬렉션 타입) (0) | 2021.06.19 |
[iOS - swift 공식 문서] 3. String (문자열) (0) | 2021.06.18 |
[iOS - swift 공식 문서] 1. Basics (Type Aliases, 예외 처리) (0) | 2021.06.17 |
Comments