succeed<A> static method

Exit<A, Never> succeed<A>(
  1. A value
)

Creates a successful exit with the given value

Implementation

static Exit<A, Never> succeed<A>(A value) => Success(value);