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
- 리뷰
- 영화
- 토이프로젝트
- java
- SWIFT
- 자바
- toy project
- 코딩공부
- 키노
- 영화후기
- 영화일기
- sopt 35기
- SOPT
- 오블완
- 자바공부
- inflearn
- 플러터
- Flutter
- 스프링 입문
- sopt ios
- 인프런
- 티스토리챌린지
- 백준
- 새벽녘 소소한 기록
- 영화리뷰
- 자바 스터디
- Flutter Toy Project
- 프로그래머스
- 영화기록
- 일기
Archives
- Today
- Total
목록스위프트 고차함수 (1)
새벽의 기록
다른 함수를 전달인자로 받거나 함수실행의 결과를 함수로 반환하는 함수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