Result

besom.internal.Result
See theResult companion enum
object Result

Attributes

Companion
enum
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Result.type

Members list

Type members

Classlikes

trait ToFuture[F[_]]

Attributes

Supertypes
class Object
trait Matchable
class Any

Inherited types

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def apply[A](a: => A)(using Debug): Result[A]
def blocking[A](a: => A)(using Debug): Result[A]
def bracket[A, B](acquire: => Result[A])(release: A => Result[Unit])(use: A => Result[B])(using Debug): Result[B]
def defer[A](a: => A)(using Debug): Result[A]
def deferFuture[A](thunk: => Future[A])(using Debug): Result[A]
def eval[F[_], A](fa: => F[A])(using tf: ToFuture[F])(using Debug): Result[A]
def evalEither[A](eitherA: => Either[Throwable, A])(using Debug): Result[A]
def evalTry[A](tryA: => Try[A])(using Debug): Result[A]
def fail[A](err: Throwable)(using Debug): Result[A]
def getFinalizers(using Debug): Result[Finalizers]
def parSequence[A, CC <: (IterableOnce), To](coll: CC[Result[A]])(using bf: BuildFrom[CC[Result[A]], A, To], d: Debug): Result[To]
def pure[A](a: A)(using Debug): Result[A]
def resource[A](acquire: => Result[A])(release: A => Result[Unit])(using scope: Scope)(using Debug): Result[A]
def scoped[A](inner: Scope ?=> Result[A])(using Debug): Result[A]
def sequence[A, CC <: (IterableOnce), To](coll: CC[Result[A]])(using bf: BuildFrom[CC[Result[A]], A, To], d: Debug): Result[To]
def sequenceMap[K, V](map: Map[K, Result[V]])(using Debug): Result[Map[K, V]]
def sleep(duration: Long)(using Debug): Result[Unit]
def unit(using Debug): Result[Unit]