tofu.higherKind.bi.BiTemplate.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tofu-core-higher-kind_3 Show documentation
Show all versions of tofu-core-higher-kind_3 Show documentation
Opinionated set of tools for functional programming in Scala
package tofu.higherKind.bi
import BiTemplate.No
trait BiTemplate[F[_, _]] {
type FS[A] = F[No, A]
}
object BiTemplate {
type No <: Nothing
}