final
case class
SelectT[R, M[_], A](run: ((A) ⇒ M[R]) ⇒ M[A]) extends Product with Serializable
Instance Constructors
-
new
SelectT(run: ((A) ⇒ M[R]) ⇒ M[A])
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
def
finalize(): Unit
-
def
flatMap[B](f: (A) ⇒ SelectT[R, M, B])(implicit F: Bind[M]): SelectT[R, M, B]
-
final
def
getClass(): Class[_]
-
final
def
isInstanceOf[T0]: Boolean
-
def
map[B](f: (A) ⇒ B)(implicit F: Functor[M]): SelectT[R, M, B]
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
val
run: ((A) ⇒ M[R]) ⇒ M[A]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toContT(implicit F: Bind[M]): ContT[R, M, A]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Selection monad transformer.
https://github.com/ghc/packages-transformers/blob/0_5_4_0/Control/Monad/Trans/Select.hs
https://arxiv.org/pdf/1406.2058.pdf
https://www.cs.bham.ac.uk/~mhe/papers/selection-escardo-oliva.pdf