PassthroughSchematic

class PassthroughSchematic[F[_]](schematic: Schematic[F]) extends Schematic[F]
trait Schematic[F]
class Object
trait Matchable
class Any

Value members

Concrete methods

def bigint: F[BigInt]
def bijection[A, B](f: F[A], to: A => B, from: B => A): F[B]
def byte: F[Byte]
def double: F[Double]
def enumeration[A](to: A => (String, Int), fromName: Map[String, A], fromOrdinal: Map[Int, A]): F[A]
def float: F[Float]
def int: F[Int]
def list[S](fs: F[S]): F[List[S]]
def long: F[Long]
def map[K, V](fk: F[K], fv: F[V]): F[Map[K, V]]
def set[S](fs: F[S]): F[Set[S]]
def short: F[Short]
def string: F[String]
def struct[S](fields: Vector[Field[F, S, _]])(const: Vector[Any] => S): F[S]
def surjection[A, B](f: F[A], to: Refinement[A, B], from: B => A): F[B]
def suspend[A](f: Lazy[F[A]]): F[A]
def union[S](first: Alt[F, S, _], rest: Vector[Alt[F, S, _]])(total: S => WithValue[F, S, _]): F[S]
def unit: F[Unit]
def uuid: F[UUID]
def withHints[A](fa: F[A], hints: Hints): F[A]