일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바 스터디
- 키노
- 새벽녘 소소한 기록
- 백엔드
- 영화후기
- 자바공부
- 도서리뷰
- 자바
- sopt 35기
- toy project
- inflearn
- IOS
- 영화
- 스프링 입문
- 코딩공부
- 영화리뷰
- Flutter Toy Project
- 플러터
- 일기
- 인프런
- 토이프로젝트
- 리뷰
- 영화기록
- 백준
- backend
- 영화일기
- SOPT
- java
- Flutter
- sopt ios
- Today
- Total
목록스위프트 (3)
새벽의 기록
다른 함수를 전달인자로 받거나 함수실행의 결과를 함수로 반환하는 함수map https://developer.apple.com/documentation/swift/array/map(_:)-87c4d map(_:) | Apple Developer DocumentationReturns an array containing the results of mapping the given closure over the sequence’s elements.developer.apple.com # case1 let cast = ["Vivien", "Marlon", "Kim", "Karl"]let lowercaseNames = cast.map { $0.lowercased() }// 'lowercaseNames' == ["vi..
모든 요소가 특정 조건을 만족하는지 확인하는 메서드 https://developer.apple.com/documentation/swift/array/allsatisfy(_:) allSatisfy(_:) | Apple Developer DocumentationReturns a Boolean value indicating whether every element of a sequence satisfies a given predicate.developer.apple.com 모든 요소가 특정 조건을 만족하는지 확인하는 메서드 # case1 let names = ["Sofia", "Camilla", "Martina", "Mateo", "Nicolás"]let allHaveAtLeastFive = names.allS..
두 개의 시퀀스를 조합하여 새로운 하나의 시퀀스를 생성하는 함수 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)"..