App
Definitions
def runAll(f: Unit -> a \ ef): a \ (ef - (Clock + Console + FileReadWithResult + FileWriteWithResult + HttpWithResult + Logger)) + IO + Net
SourceRuns the given function f
handling all effects specified in the signature.
def runAllWithResult(f: Unit -> a \ ef): Result[IoError, a] \ (ef - (Clock + Console + FileRead + FileWrite + Http + Logger)) + IO + Net
SourceRuns the given function f
handling all effects specified in the signature where some handlers may return Result
.