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.