Natural Transformation

Implementation

trait ~>[F[_], G[_]] {
  def apply[A](f: F[A]): G[A]
}

References