Object

higherkindness.skeuomorph.mu

Optimize

Related Doc: package mu

Permalink

object Optimize

Optimize object contains transformations in same schema

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

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. def knownCoproductTypes[T](implicit arg0: Basis[MuF, T]): (T) ⇒ T

    Permalink
  13. def knownCoproductTypesTrans[T](implicit B: Basis[MuF, T]): Trans[MuF, MuF, T]

    Permalink

    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])
  14. def namedTypes[T](implicit arg0: Basis[MuF, T]): (T) ⇒ T

    Permalink
  15. def namedTypesTrans[T]: Trans[MuF, MuF, T]

    Permalink
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def nestedNamedTypes[T](implicit arg0: Basis[MuF, T]): (T) ⇒ T

    Permalink
  18. def nestedNamedTypesTrans[T](implicit T: Basis[MuF, T]): Trans[MuF, MuF, T]

    Permalink

    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)
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped