io.github.raptros.bson

BsonMacros

object BsonMacros

this object provides several macro implementations for automatically deriving encode and decode type classes for case classes. they all work about the same way:

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

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. macro def deriveCaseCodecBson[C]: CodecBson[C]

    Derives a CodecBson for a case class by building a call to bsonCaseCodecN.

    Derives a CodecBson for a case class by building a call to bsonCaseCodecN. Make sure to have Bson._ imported wherever you use this.

    C

    a case class - i.e. it has a companion object with an apply and unapply method that each match the primary constructor's signature.

    returns

    if C is a case class, a working CodecBson. if not, who knows.

  7. def deriveCaseCodecBsonImpl[C](c: Context)(implicit arg0: scala.reflect.macros.blackbox.Context.WeakTypeTag[C]): scala.reflect.macros.blackbox.Context.Tree

  8. macro def deriveCaseDecodeBson[C]: DecodeBson[C]

    Derives a DecodeBson for a case class by building a call to bdecodeNf.

    Derives a DecodeBson for a case class by building a call to bdecodeNf. Make sure to have Bson._ imported wherever you use this.

    C

    a case class - i.e. it has a companion object with an apply method that matches the primary constructor's signature.

    returns

    if C is a case class, a working CodecBson. if not, who knows.

  9. def deriveCaseDecodeBsonImpl[C](c: Context)(implicit arg0: scala.reflect.macros.blackbox.Context.WeakTypeTag[C]): scala.reflect.macros.blackbox.Context.Tree

  10. macro def deriveCaseEncodeBson[C]: EncodeBson[C]

    Derives a EncodeBson for a case class by building a call to bencodeNf.

    Derives a EncodeBson for a case class by building a call to bencodeNf. Make sure to have Bson._ imported wherever you use this.

    C

    a case class - i.e. it has a companion object with an unapply method that is compatible with the primary constructor's signature.

    returns

    if C is a case class, a working CodecBson. if not, who knows.

  11. def deriveCaseEncodeBsonImpl[C](c: Context)(implicit arg0: scala.reflect.macros.blackbox.Context.WeakTypeTag[C]): scala.reflect.macros.blackbox.Context.Tree

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

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

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

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

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

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

    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef
  22. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped