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

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 ev: 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. def manuallyDerive[Target, Source](to: (Target) ⇒ Source, from: (Source) ⇒ Target)(ev: Primitive[Source])(tpe: String = ev.dataType): Primitive[Target]

    Permalink

    Derives a primitive without implicit lookup in phantom itself.

    Derives a primitive without implicit lookup in phantom itself. This is because the macro that empowers the implicit lookup for primitives cannot be used in the same compilation as the one its defined in.

    Target

    The target type of the new primitive.

    Source

    The type we are deriving from.

    to

    The function that converts the derived value to the original one.

    from

    The function that will convert an original value to a derived one.

    ev

    Evidence that the source type is a Cassandra primitive.

    returns

    A new primitive for the target type.

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  19. val nullValue: Null

    Permalink
  20. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped