Object/Class

com.outworkers.phantom.builder.primitives

Primitive

Related Docs: class Primitive | package primitives

Permalink

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
Visibility
  1. Public
  2. All

Type Members

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

    Permalink

    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: 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. def apply[RR](implicit arg0: Primitive[RR]): Primitive[RR]

    Permalink

    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.

  5. final def asInstanceOf[T0]: T0

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

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

    Permalink

    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.

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  14. implicit macro def materializer[T]: Primitive[T]

    Permalink

    !! 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.

  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped