Skip to content

Instantly share code, notes, and snippets.

@developer-sdk
Created March 5, 2019 12:48
Show Gist options
  • Select an option

  • Save developer-sdk/d944ddd205b4d1c3f84801ecdc49c794 to your computer and use it in GitHub Desktop.

Select an option

Save developer-sdk/d944ddd205b4d1c3f84801ecdc49c794 to your computer and use it in GitHub Desktop.
서술형 프로그래밍
object FuncThinking2 extends App {
val employees = List("james", "s", "kevin", "paul")
val result1 = employees.filter(_.length > 1).map(_.capitalize).reduce(_ + "," + _)
println(result1)
// 동일한 결과, 최종 문자열 조인의 차이
val result2 = employees.filter(_.length > 1).map(_.capitalize).mkString(",")
println(result2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment