dep<C> method

StepBuilder3<A, B, C> dep<C>(
  1. Step<C> stepC
)

Add dependency on stepC and return a new builder from which to continue (building the final step).

This methods returns a new builder to be used as an intermediate result in the expression defining a step. See Step.define for how to define steps.

Implementation

StepBuilder3<A, B, C> dep<C>(Step<C> stepC) {
  return StepBuilder3._(_name, _a, _b, stepC);
}