Visitor

doobie.free.clob.ClobOp.Visitor
trait Visitor[F[_]] extends FunctionK[ClobOp, F]

Attributes

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

Members list

Value members

Abstract methods

def canceled: F[Unit]

Attributes

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

Attributes

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

Attributes

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

Attributes

Source
clob.scala
def free: F[Unit]

Attributes

Source
clob.scala
def getAsciiStream: F[InputStream]

Attributes

Source
clob.scala
def getCharacterStream: F[Reader]

Attributes

Source
clob.scala
def getCharacterStream(a: Long, b: Long): F[Reader]

Attributes

Source
clob.scala
def getSubString(a: Long, b: Int): F[String]

Attributes

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

Attributes

Source
clob.scala
def length: F[Long]

Attributes

Source
clob.scala
def monotonic: F[FiniteDuration]

Attributes

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

Attributes

Source
clob.scala
def poll[A](poll: Any, fa: ClobIO[A]): F[A]

Attributes

Source
clob.scala
def position(a: Clob, b: Long): F[Long]

Attributes

Source
clob.scala
def position(a: String, b: Long): F[Long]

Attributes

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

Attributes

Source
clob.scala
def raw[A](f: Clob => A): F[A]

Attributes

Source
clob.scala
def realTime: F[FiniteDuration]

Attributes

Source
clob.scala
def setAsciiStream(a: Long): F[OutputStream]

Attributes

Source
clob.scala
def setCharacterStream(a: Long): F[Writer]

Attributes

Source
clob.scala
def setString(a: Long, b: String): F[Int]

Attributes

Source
clob.scala
def setString(a: Long, b: String, c: Int, d: Int): F[Int]

Attributes

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

Attributes

Source
clob.scala
def truncate(a: Long): F[Unit]

Attributes

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

Attributes

Source
clob.scala

Concrete methods

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

Applies this functor transformation from F to G

Applies this functor transformation from F to G

Attributes

Source
clob.scala

Inherited methods

def and[H[_]](h: FunctionK[ClobOp, H]): FunctionK[ClobOp, [_] =>> Tuple2K[F, 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[ClobOp, 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, ClobOp]): FunctionK[E, F]

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 <: (ClobOp)]: FunctionK[F0, F]

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[ClobOp, H, _$6], F]

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[ClobOp, 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