Open fedefernandez opened 6 years ago
Fetch a list, an option or directly an object from a ResultSet using the ResultSetAPI.
ResultSet
ResultSetAPI
def readA[F[_], T](rs: ResultSet): FreeS[F, T] def readOptionA[F[_], T](rs: ResultSet): FreeS[F, Option[T]] def readListA[F[_], T](rs: ResultSet): FreeS[F, List[T]]
Fetch a list, an option or directly an object from a
ResultSet
using theResultSetAPI
.