Consider an example:
public def someFunc(f: (One Pair Two Pair Three) => Future[Two]) : SomeResultType = {...}
case class One(...)
case class Two(...)
case class Three(...)
Pair is scala.Predef#Pair
What does scala.Predef#Pair mean? As I know I can write function calls in scala like this println "string" but in that case token are types. What does the actual type of expression One Pair Two Pair Three?