Packages

  • package root
    Definition Classes
    root
  • package doobie

    Top-level import, providing aliases for the most commonly used types and modules from doobie-free and doobie-core.

    Top-level import, providing aliases for the most commonly used types and modules from doobie-free and doobie-core. A typical starting set of imports would be something like this.

    import cats.implicits._
    import doobie._, doobie.implicits._
    Definition Classes
    root
    See also

    The doobie microsite for much more information.

  • package util

    Collection of modules for typeclasses and other helpful bits.

    Collection of modules for typeclasses and other helpful bits.

    Definition Classes
    doobie
  • object composite

    Module defining a typeclass for composite database types (those that can map to multiple columns).

    Module defining a typeclass for composite database types (those that can map to multiple columns).

    Definition Classes
    util
  • Composite
  • EvenLower
  • LowerPriorityComposite

trait Composite[A] extends AnyRef

Self Type
Composite[A]
Annotations
@implicitNotFound( ... )
Source
composite.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Composite
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val meta: List[(meta.Meta[_], NullabilityKnown)]
  2. abstract val toList: (A) ⇒ List[Any]

    Flatten the composite into its untyped constituents.

    Flatten the composite into its untyped constituents. This is only useful for logging.

Concrete 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
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. val get: (Int) ⇒ free.resultset.ResultSetIO[A]
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def imap[B](f: (A) ⇒ B)(g: (B) ⇒ A): Composite[B]
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final lazy val length: Int
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. val set: (Int, A) ⇒ free.preparedstatement.PreparedStatementIO[Unit]
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. val unsafeGet: (ResultSet, Int) ⇒ A
  22. val unsafeSet: (PreparedStatement, Int, A) ⇒ Unit
  23. val update: (Int, A) ⇒ free.resultset.ResultSetIO[Unit]
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  27. def zip[B](cb: Composite[B]): Composite[(A, B)]

    Product of two Composites.

Inherited from AnyRef

Inherited from Any

Ungrouped