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
- 프로그래머스
- 새벽녘 소소한 기록
- 코딩공부
- 스프링 입문
- SWIFT
- 일기
- 영화일기
- 토이프로젝트
- SOPT
- 키노
- 티스토리챌린지
- inflearn
- 오블완
- 리뷰
- 영화리뷰
- Flutter
- java
- 영화
- sopt ios
- 영화기록
- 자바 스터디
- 인프런
- 백준
- toy project
- sopt 35기
- 자바
- 영화후기
- Flutter Toy Project
- 자바공부
- 플러터
Archives
- Today
- Total
목록swift filter (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