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
- 새벽녘 소소한 기록
- backend
- 리뷰
- 일기
- 토이프로젝트
- 영화일기
- 인프런
- 키노
- 영화후기
- 자바
- Flutter Toy Project
- sopt 35기
- 자바공부
- 백준
- sopt ios
- inflearn
- Flutter
- java
- 영화기록
- 백엔드
- 영화리뷰
- toy project
- IOS
- SOPT
- 스프링 입문
- 플러터
- 도서리뷰
- 자바 스터디
- 코딩공부
- 영화
Archives
- Today
- Total
목록스위프트 zip (1)
새벽의 기록
[ios\swift] 내장함수 zip(_:_:)
두 개의 시퀀스를 조합하여 새로운 하나의 시퀀스를 생성하는 함수 https://developer.apple.com/documentation/swift/zip(_:_:) zip(_:_:) | Apple Developer DocumentationCreates a sequence of pairs built out of two underlying sequences.developer.apple.com두 개의 시퀀스를 조합하여 새로운 하나의 시퀀스를 생성하는 함수 # case1let words = ["one", "two", "three", "four"]let numbers = 1...4for (word, number) in zip(words, numbers) { print("\(word): \(number)"..
[iOS]
2024. 5. 28. 15:22