From

com.rallyhealth.weepickle.v1.core.Types.From
See theFrom companion object
trait From[In]

Represents the ability to write a value of type In.

Generally nothing more than a way of applying the In to a Visitor, along with some utility methods

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait CaseW[In]
class SingletonW[T]
class MapFrom[U, T]
class MapFromNulls[U, T]
trait FromTo[T]
trait TaggedFromTo[T]
class Leaf[T]
class Node[T]
trait TaggedFrom[In]
class Leaf[T]
class Node[T]
class TupleNFrom[In]
Show all

Members list

Value members

Abstract methods

def transform0[Out](in: In, out: Visitor[_, Out]): Out

Concrete methods

def comap[U](f: U => In): MapFrom[U, In]
def comapNulls[U](f: U => In): MapFromNulls[U, In]
def narrow[K]: From[K]
def transform[Out](in: In, out: Visitor[_, Out]): Out