RegionT

sealed abstract
class RegionT[S, P[_], A]

A monad transformer in which scarce resources can be opened. When the region terminates, all opened resources will be closed automatically. It's a type error to return an opened resource from the region, and no I/O with closed resources is possible.

Companion
object
class Object
trait Matchable
class Any

Value members

Abstract methods

Concrete methods

def mapT[Q[_], B](f: P[A] => Q[B]): RegionT[S, Q, B]