You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
array.map{item -> item + 1}
array.map(_ + 1) //The same
array.fold(0){result, item -> result + item} //Sum
array.fold(0, _1 + _2) //The same
val f : (int, int) -> int = a : int, b : int -> a + b //You can omit the datatype