SQLInputInterpreter

doobie.free.KleisliInterpreter.SQLInputInterpreter
trait SQLInputInterpreter extends Visitor[[_] =>> Kleisli[M, SQLInput, _$288]]

Attributes

Source
kleisliinterpreter.scala
Graph
Supertypes
trait Visitor[[_] =>> Kleisli[M, SQLInput, _$288]]
trait FunctionK[SQLInputOp, [_] =>> Kleisli[M, SQLInput, _$288]]
trait Serializable
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def canceled: Kleisli[M, SQLInput, Unit]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def delay[A](thunk: => A): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def embed[A](e: Embedded[A]): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def forceR[A, B](fa: SQLInputIO[A])(fb: SQLInputIO[B]): Kleisli[M, SQLInput, B]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def handleErrorWith[A](fa: SQLInputIO[A])(f: Throwable => SQLInputIO[A]): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def monotonic: Kleisli[M, SQLInput, FiniteDuration]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def onCancel[A](fa: SQLInputIO[A], fin: SQLInputIO[Unit]): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def poll[A](poll: Any, fa: SQLInputIO[A]): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def raiseError[A](e: Throwable): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def raw[A](f: SQLInput => A): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readArray: Kleisli[M, SQLInput, Array]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readAsciiStream: Kleisli[M, SQLInput, InputStream]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readBigDecimal: Kleisli[M, SQLInput, BigDecimal]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readBinaryStream: Kleisli[M, SQLInput, InputStream]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readBlob: Kleisli[M, SQLInput, Blob]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readBoolean: Kleisli[M, SQLInput, Boolean]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readByte: Kleisli[M, SQLInput, Byte]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readBytes: Kleisli[M, SQLInput, Array[Byte]]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readCharacterStream: Kleisli[M, SQLInput, Reader]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readClob: Kleisli[M, SQLInput, Clob]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readDate: Kleisli[M, SQLInput, Date]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readDouble: Kleisli[M, SQLInput, Double]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readFloat: Kleisli[M, SQLInput, Float]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readInt: Kleisli[M, SQLInput, Int]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readLong: Kleisli[M, SQLInput, Long]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readNClob: Kleisli[M, SQLInput, NClob]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readNString: Kleisli[M, SQLInput, String]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readObject: Kleisli[M, SQLInput, AnyRef]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readObject[T](a: Class[T]): Kleisli[M, SQLInput, T]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readRef: Kleisli[M, SQLInput, Ref]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readRowId: Kleisli[M, SQLInput, RowId]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readSQLXML: Kleisli[M, SQLInput, SQLXML]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readShort: Kleisli[M, SQLInput, Short]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readString: Kleisli[M, SQLInput, String]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readTime: Kleisli[M, SQLInput, Time]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readTimestamp: Kleisli[M, SQLInput, Timestamp]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def readURL: Kleisli[M, SQLInput, URL]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def realTime: Kleisli[M, SQLInput, FiniteDuration]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def suspend[A](hint: Type)(thunk: => A): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def uncancelable[A](body: Poll[SQLInputIO] => SQLInputIO[A]): Kleisli[M, SQLInput, A]

Attributes

Definition Classes
Source
kleisliinterpreter.scala
override def wasNull: Kleisli[M, SQLInput, Boolean]

Attributes

Definition Classes
Source
kleisliinterpreter.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[[_] =>> Kleisli[M, SQLInput, _$288], 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
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

Inherited from:
Visitor
Source
sqlinput.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, [_] =>> Kleisli[M, SQLInput, _$288]]): 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