pipe

Starts building a pipeline.

  1. auto pipe(Args args)
  2. auto pipe(Args args)
    pipe
    (
    alias Stage
    Args...
    )
    (
    auto ref Args args
    )
    if (
    isStage!Stage
    )

Parameters

Stage

The source stage.

Args

Arguments passed to stage constructor when the stage is instantiated.

Return Value

Type: auto

A Schema that allows next stages to be appended.

See Also

Schema.pipe.

Meta