Step

object Step
Companion:
class
class Object
trait Matchable
class Any
Step.type

Value members

Concrete methods

def attemptFunction[In, Out](f: In => Out): Step[Any, Throwable, In, Out]
def fail[Err](err: Err): Step[Any, Err, Any, Nothing]
def map[In, Out](f: In => Out): Step[Any, Nothing, In, Out]

Creates a step that maps from In to Out using the specified function.

Creates a step that maps from In to Out using the specified function.

def succeed[A](a: => A): Step[Any, Nothing, Any, A]