mapmap 은 이미 너무 많이 알다시피 forEach와 같은 기능을 합니다let arr = [1,2,3,4,5]arr.map { print($0, terminator: " ") }// 1 2 3 4 5 flatMap[정의]func flatMap(_ transform: (Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element] where SegmentOfResult : Sequence transform 파라미터에 self의 요소를 인자로 받아서 각 시퀀스요소의 변환을 한 다음 array를 리턴한다고 하네요. [ 쓰임 ] Apple 문서에서도 잘 나와 있지만 Flatmap은 다음 두 가지 역할을 합니다. 1. flatte..
[##_revenue_list_upper##]