Question

From http://www.playframework.org/documentation/2.0/ScalaTodoList

What does the "~" do and why I don't need a point before map?

val task = {
  get[Long]("id") ~ 
  get[String]("label") map {
    case id~label => Task(id, label)
  }
}

Thanks for your help.

Was it helpful?

Solution

The ~ operator is inspired from the Scala parser combinators, it allows to extract two column values from a row.

There is no point before map because in Scala you are not required to write points.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top