Visitor

doobie.free.sqloutput.SQLOutputOp.Visitor
trait Visitor[F[_]] extends FunctionK[SQLOutputOp, F]

Attributes

Source
sqloutput.scala
Graph
Supertypes
trait FunctionK[SQLOutputOp, F]
trait Serializable
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def canceled: F[Unit]

Attributes

Source
sqloutput.scala
def delay[A](thunk: => A): F[A]

Attributes

Source
sqloutput.scala
def embed[A](e: Embedded[A]): F[A]

Attributes

Source
sqloutput.scala
def forceR[A, B](fa: SQLOutputIO[A])(fb: SQLOutputIO[B]): F[B]

Attributes

Source
sqloutput.scala
def handleErrorWith[A](fa: SQLOutputIO[A])(f: Throwable => SQLOutputIO[A]): F[A]

Attributes

Source
sqloutput.scala
def monotonic: F[FiniteDuration]

Attributes

Source
sqloutput.scala
def onCancel[A](fa: SQLOutputIO[A], fin: SQLOutputIO[Unit]): F[A]

Attributes

Source
sqloutput.scala
def poll[A](poll: Any, fa: SQLOutputIO[A]): F[A]

Attributes

Source
sqloutput.scala
def raiseError[A](e: Throwable): F[A]

Attributes

Source
sqloutput.scala
def raw[A](f: SQLOutput => A): F[A]

Attributes

Source
sqloutput.scala
def realTime: F[FiniteDuration]

Attributes

Source
sqloutput.scala
def suspend[A](hint: Type)(thunk: => A): F[A]

Attributes

Source
sqloutput.scala
def uncancelable[A](body: Poll[SQLOutputIO] => SQLOutputIO[A]): F[A]

Attributes

Source
sqloutput.scala
def writeArray(a: Array): F[Unit]

Attributes

Source
sqloutput.scala
def writeAsciiStream(a: InputStream): F[Unit]

Attributes

Source
sqloutput.scala
def writeBigDecimal(a: BigDecimal): F[Unit]

Attributes

Source
sqloutput.scala
def writeBinaryStream(a: InputStream): F[Unit]

Attributes

Source
sqloutput.scala
def writeBlob(a: Blob): F[Unit]

Attributes

Source
sqloutput.scala
def writeBoolean(a: Boolean): F[Unit]

Attributes

Source
sqloutput.scala
def writeByte(a: Byte): F[Unit]

Attributes

Source
sqloutput.scala
def writeBytes(a: Array[Byte]): F[Unit]

Attributes

Source
sqloutput.scala
def writeCharacterStream(a: Reader): F[Unit]

Attributes

Source
sqloutput.scala
def writeClob(a: Clob): F[Unit]

Attributes

Source
sqloutput.scala
def writeDate(a: Date): F[Unit]

Attributes

Source
sqloutput.scala
def writeDouble(a: Double): F[Unit]

Attributes

Source
sqloutput.scala
def writeFloat(a: Float): F[Unit]

Attributes

Source
sqloutput.scala
def writeInt(a: Int): F[Unit]

Attributes

Source
sqloutput.scala
def writeLong(a: Long): F[Unit]

Attributes

Source
sqloutput.scala
def writeNClob(a: NClob): F[Unit]

Attributes

Source
sqloutput.scala
def writeNString(a: String): F[Unit]

Attributes

Source
sqloutput.scala
def writeObject(a: AnyRef, b: SQLType): F[Unit]

Attributes

Source
sqloutput.scala
def writeObject(a: SQLData): F[Unit]

Attributes

Source
sqloutput.scala
def writeRef(a: Ref): F[Unit]

Attributes

Source
sqloutput.scala
def writeRowId(a: RowId): F[Unit]

Attributes

Source
sqloutput.scala
def writeSQLXML(a: SQLXML): F[Unit]

Attributes

Source
sqloutput.scala
def writeShort(a: Short): F[Unit]

Attributes

Source
sqloutput.scala
def writeString(a: String): F[Unit]

Attributes

Source
sqloutput.scala
def writeStruct(a: Struct): F[Unit]

Attributes

Source
sqloutput.scala
def writeTime(a: Time): F[Unit]

Attributes

Source
sqloutput.scala
def writeTimestamp(a: Timestamp): F[Unit]

Attributes

Source
sqloutput.scala
def writeURL(a: URL): F[Unit]

Attributes

Source
sqloutput.scala

Concrete methods

final def apply[A](fa: SQLOutputOp[A]): F[A]

Applies this functor transformation from F to G

Applies this functor transformation from F to G

Attributes

Source
sqloutput.scala

Inherited methods

def and[H[_]](h: FunctionK[SQLOutputOp, H]): FunctionK[F, [_] =>> Tuple2K[G, H, _$9]]

Composes two instances of FunctionK into a new FunctionK that transforms one single functor to a cats.data.Tuple2K of two functors.

Composes two instances of FunctionK into a new FunctionK that transforms one single functor to a cats.data.Tuple2K of two functors.

scala> import cats.arrow.FunctionK
scala> val list2option = λ[FunctionK[List, Option]](_.headOption)
scala> val list2vector = λ[FunctionK[List, Vector]](_.toVector)
scala> val optionAndVector = list2option and list2vector
scala> optionAndVector(List(1,2,3))
res0: cats.data.Tuple2K[Option,Vector,Int] = Tuple2K(Some(1),Vector(1, 2, 3))

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala
def andThen[H[_]](f: FunctionK[F, H]): FunctionK[F, H]

Composes two instances of FunctionK into a new FunctionK with this transformation applied first.

Composes two instances of FunctionK into a new FunctionK with this transformation applied first.

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala
def compose[E[_]](f: FunctionK[E, SQLOutputOp]): FunctionK[E, G]

Composes two instances of FunctionK into a new FunctionK with this transformation applied last.

Composes two instances of FunctionK into a new FunctionK with this transformation applied last.

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala
def narrow[F0 <: (SQLOutputOp)]: FunctionK[F0, G]

Narrows the input type of this FunctionK from F to F0

Narrows the input type of this FunctionK from F to F0

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala
def or[H[_]](h: FunctionK[H, F]): FunctionK[[_] =>> EitherK[F, H, _$6], G]

Composes two instances of FunctionK into a new FunctionK that transforms a cats.data.EitherK to a single functor.

Composes two instances of FunctionK into a new FunctionK that transforms a cats.data.EitherK to a single functor.

This transformation will be used to transform left F values while h will be used to transform right H values.

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala
def widen[G0[x]]: FunctionK[F, G0]

Widens the output type of this FunctionK from G to G0

Widens the output type of this FunctionK from G to G0

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala