Visitor

doobie.free.sqlinput$.SQLInputOp$.Visitor
trait Visitor[F[_]] extends FunctionK[SQLInputOp, F]

Attributes

Source:
sqlinput.scala
Graph
Supertypes
trait FunctionK[SQLInputOp, F]
trait Serializable
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Abstract methods

def canceled: F[Unit]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Source:
sqlinput.scala
def monotonic: F[FiniteDuration]

Attributes

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

Attributes

Source:
sqlinput.scala
def poll[A](poll: Any, fa: SQLInputIO[A]): F[A]

Attributes

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

Attributes

Source:
sqlinput.scala
def raw[A](f: SQLInput => A): F[A]

Attributes

Source:
sqlinput.scala
def readArray: F[Array]

Attributes

Source:
sqlinput.scala
def readAsciiStream: F[InputStream]

Attributes

Source:
sqlinput.scala
def readBigDecimal: F[BigDecimal]

Attributes

Source:
sqlinput.scala
def readBinaryStream: F[InputStream]

Attributes

Source:
sqlinput.scala
def readBlob: F[Blob]

Attributes

Source:
sqlinput.scala
def readBoolean: F[Boolean]

Attributes

Source:
sqlinput.scala
def readByte: F[Byte]

Attributes

Source:
sqlinput.scala
def readBytes: F[Array[Byte]]

Attributes

Source:
sqlinput.scala
def readCharacterStream: F[Reader]

Attributes

Source:
sqlinput.scala
def readClob: F[Clob]

Attributes

Source:
sqlinput.scala
def readDate: F[Date]

Attributes

Source:
sqlinput.scala
def readDouble: F[Double]

Attributes

Source:
sqlinput.scala
def readFloat: F[Float]

Attributes

Source:
sqlinput.scala
def readInt: F[Int]

Attributes

Source:
sqlinput.scala
def readLong: F[Long]

Attributes

Source:
sqlinput.scala
def readNClob: F[NClob]

Attributes

Source:
sqlinput.scala
def readNString: F[String]

Attributes

Source:
sqlinput.scala
def readObject: F[AnyRef]

Attributes

Source:
sqlinput.scala
def readObject[T](a: Class[T]): F[T]

Attributes

Source:
sqlinput.scala
def readRef: F[Ref]

Attributes

Source:
sqlinput.scala
def readRowId: F[RowId]

Attributes

Source:
sqlinput.scala
def readSQLXML: F[SQLXML]

Attributes

Source:
sqlinput.scala
def readShort: F[Short]

Attributes

Source:
sqlinput.scala
def readString: F[String]

Attributes

Source:
sqlinput.scala
def readTime: F[Time]

Attributes

Source:
sqlinput.scala
def readTimestamp: F[Timestamp]

Attributes

Source:
sqlinput.scala
def readURL: F[URL]

Attributes

Source:
sqlinput.scala
def realTime: F[FiniteDuration]

Attributes

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

Attributes

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

Attributes

Source:
sqlinput.scala
def wasNull: F[Boolean]

Attributes

Source:
sqlinput.scala

Concrete methods

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

Applies this functor transformation from F to G

Applies this functor transformation from F to G

Attributes

Source:
sqlinput.scala

Inherited methods

def and[H[_]](h: FunctionK[SQLInputOp, 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, SQLInputOp]): 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 <: (SQLInputOp)]: 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