package partialrenderer
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- abstract class PartialRenderer[-Props, Partial, Full, +Out] extends AnyRef
- case class PartialSettable[Partial, Full](settable: Settable[Tentative[Partial, Full]])(implicit partialityType: PartialityType[Partial, Full]) extends Product with Serializable
- case class PartialityType[Partial, Full](default: Partial, partialToFull: (Partial) => Either[String, Full], fullToPartial: (Full) => Partial) extends Product with Serializable
Law: pst.partialToFull(pst.fullToPartial(full)) == Right(full)
Law: pst.partialToFull(pst.fullToPartial(full)) == Right(full)
Law: pst.partialToFull(partial).toOption.map(pst.fullToPartial) inSet (None, Some(partial))
- case class Settable[A](value: A)(modifyFunc: ((A) => A) => japgolly.scalajs.react.Callback) extends Product with Serializable
- sealed trait Tentative[+P, +F] extends AnyRef
Value Members
- object PartialRenderer
- object PartialSettable extends Serializable
- object PartialityType extends Serializable
- object Settable extends Serializable
- object Tentative