Skip to content
Snippets Groups Projects
Parametricity.scala 247 B
Newer Older
Alexander Gehrke's avatar
Alexander Gehrke committed
package datastructures

object Parametricity:
Alexander Gehrke's avatar
Alexander Gehrke committed
  // with our compiler settings from build.sbt, there are even less
  // possibilities to do something wrong here without the compiler complaining
  def para[A,B,C](a: A, b: B)(f: (A,B) => C): C = ???