Packages

object Optimize

Optimize object contains transformations in same schema

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Optimize
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. def knownCoproductTypes[T](implicit arg0: Basis[MuF, T]): (T) => T
  12. def knownCoproductTypesTrans[T](implicit B: Basis[MuF, T]): Trans[MuF, MuF, T]

    micro-optimization to convert known coproducts to named types such as Option or Either.

    micro-optimization to convert known coproducts to named types such as Option or Either.

    Without this optimization, printing a product containing fields whose type is a coproduct would end up with something like:

    case class Product(field1: Cop[Int :: String :: TNil], field2: Cop[Int :: Null :: TNil])

    With it, we rename the known coproducts to the correspondent named types:

    case class Product(field1: Either[Int, String], field2: Option[Int])
  13. def namedTypes[T](implicit arg0: Basis[MuF, T]): (T) => T
  14. def namedTypesTrans[T]: Trans[MuF, MuF, T]
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def nestedNamedTypes[T](implicit arg0: Basis[MuF, T]): (T) => T
  17. def nestedNamedTypesTrans[T](implicit T: Basis[MuF, T]): Trans[MuF, MuF, T]

    micro-optimization to convert types from fields in a product to NamedTypes.

    micro-optimization to convert types from fields in a product to NamedTypes.

    Without this optimization, printing a product containing fields of other products would end up with something like:

    case class bbProduct(field1: String, field2: case class OtherField())

    With it, we cut recursion in messages, to leave only type names:

    case class Product(field1: String, field2: OtherField)
  18. def nestedOptionInCoproduct[T](implicit arg0: Basis[MuF, T]): (T) => T
  19. def nestedOptionInCoproductsTrans[T](implicit T: Basis[MuF, T]): Trans[MuF, MuF, T]
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toRequiredTypes[T](implicit arg0: Basis[MuF, T]): (T) => T
  24. def toRequiredTypesTrans[T]: Trans[MuF, MuF, T]
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped