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
- 인프런
- 일기
- 백준
- Flutter
- 리뷰
- inflearn
- 키노
- Flutter Toy Project
- 코딩공부
- 영화리뷰
- backend
- 자바
- 도서리뷰
- 영화
- sopt 35기
- 자바 스터디
- SOPT
- toy project
- 영화일기
- 영화후기
- sopt ios
- 영화기록
- java
- IOS
- 자바공부
- 토이프로젝트
- 스프링 입문
- 백엔드
- 새벽녘 소소한 기록
- 플러터
Archives
- Today
- Total
목록swift filter (1)
새벽의 기록
[ios\swift] 고차함수 (map, filter, reduce)
다른 함수를 전달인자로 받거나 함수실행의 결과를 함수로 반환하는 함수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..
[iOS]
2024. 6. 11. 10:00