com.outworkers.phantom.builder.primitives

Primitive

object Primitive

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Primitive
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Aux[Outer, Inner] = Primitive[Outer] { type PrimitiveType = Inner }

    A helper for implicit lookups that require the refined inner abstract type of a concrete primitive implementation produced by an implicit macro.

    A helper for implicit lookups that require the refined inner abstract type of a concrete primitive implementation produced by an implicit macro. This is useful to eliminate a compiler warning produced for map columns, where we need to manually cast values to their PrimitiveType after extraction just to please the compiler.

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply[RR](implicit arg0: Primitive[RR]): Primitive[RR]

    Convenience method to materialise the context bound and return a reference to it.

    Convenience method to materialise the context bound and return a reference to it. This is somewhat shorter syntax than using implicitly.

    RR

    The type of the primitive to retrieve.

    returns

    A reference to a concrete materialised implementation of a primitive for the given type.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def derive[Target, Source](to: (Target) ⇒ Source)(from: (Source) ⇒ Target)(implicit arg0: Primitive[Source]): Primitive[Target]

    Derives primitives and encodings for a non standard type.

    Derives primitives and encodings for a non standard type.

    Target

    The type you want to derive a primitive for.

    Source

    The source type of the primitive, must already have a primitive defined for it.

    to

    The function that converts a Target instance to a Source instance.

    from

    The function that converts a Source instance to a Target instance.

    returns

    A new primitive that can interact with the target type.

  10. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  16. implicit def materializer[T]: Primitive[T]

    !! Warning !! Black magic going on.

    !! Warning !! Black magic going on. This will use the excellent macro compat library to macro materialise an instance of the required primitive based on the type argument. If this does not highlight properly in your IDE, fear not, it works on my machine :)

    T

    The type parameter to materialise a primitive for.

    returns

    A concrete instance of a primitive, materialised via implicit blackbox macros.

    Annotations
    @macroImpl( ... )
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

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

    Definition Classes
    AnyRef
  21. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped