typo.dsl.OuterJoined.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of typo-dsl-zio-jdbc_3 Show documentation
Show all versions of typo-dsl-zio-jdbc_3 Show documentation
Typed postgres boilerplate generation
The newest version!
package typo.dsl
class OuterJoined[Fields](fields: Fields) {
def apply[T, N[_]: Nullability](f: Fields => SqlExpr[T, N]): SqlExpr[T, Option] =
f(fields).?
}