Schema

class Schema[S <: ([x[_]] =>> Schematic[x]), A, B](schema: Schema[S, A], to: A => B, from: B => A) extends Schema[S, B]
trait Schema[S, B]
class Object
trait Matchable
class Any

Value members

Concrete methods

def compile[F[_]](s: S[F]): F[B]

Inherited methods

final def apply[F[_]](s: S[F]): F[B]
Inherited from:
Schema
final def oneOf[Union]: OneOfPartiallyApplied[S, Union, B]
Inherited from:
Schema
final def optional[Struct]: OptionalPartiallyApplied[S, Struct, B]
Inherited from:
Schema
final def required[Struct]: RequiredPartiallyApplied[S, Struct, B]
Inherited from:
Schema

Deprecated and Inherited methods

@deprecated("use compile instead")
final def form[F[_]](s: S[F]): F[B]
Deprecated
Inherited from:
Schema