I have some code below
val primitiveDS = Seq(1, 2, 3).toDS()
primitiveDS.map(_ + 1).collect() // Returns: Array(2, 3, 4)
I want to know what exactly underscore meaning here (_ + 1), I know this belongs to scala mixed identifiers, I searched lot but could not get the exact meaning.
Also share some link to get it in depth of