Free monad over a free functor of SQLInputOp; abstractly, a computation that consumes
a java.sql.SQLInput
and produces a value of type A
.
Syntax for SQLInputIO
.
Sum type of primitive operations over a java.sql.SQLInput
.
Capture instance for SQLInputIO.
Catchable instance for SQLInputIO.
Module of constructors for SQLInputOp
.
Module of constructors for SQLInputOp
. These are rarely useful outside of the implementation;
prefer the smart constructors provided by the sqlinput
module.
Lift a SQLInputIO[A] into an exception-capturing SQLInputIO[Throwable \/ A].
Non-strict unit for capturing effects.
Natural transformation from SQLInputOp
to Kleisli
for the given M
, consuming a java.sql.SQLInput
.
Lift a different type of program that has a default Kleisli interpreter.
Backdoor for arbitrary computations on the underlying SQLInput.
Natural transformation from SQLInputIO
to M
, given a java.sql.SQLInput
.
Natural transformation from SQLInputIO
to Kleisli
for the given M
, consuming a java.sql.SQLInput
.
Algebra and free monad for primitive operations over a
java.sql.SQLInput
. This is a low-level API that exposes lifecycle-managed JDBC objects directly and is intended mainly for library developers. End users will prefer a safer, higher-level API such as that provided in thedoobie.hi
package.SQLInputIO
is a free monad that must be run via an interpreter, most commonly via natural transformation of its underlying algebraSQLInputOp
to another monad viaFree#foldMap
.The library provides a natural transformation to
Kleisli[M, SQLInput, A]
for any exception-trapping (Catchable
) and effect-capturing (Capture
) monadM
. Such evidence is provided forTask
,IO
, and stdlibFuture
; andtransK[M]
is provided as syntax.