Skip to contents

Preflight checks for a flow

Usage

preflight(fl)

Arguments

fl

A flow().

Value

The flow object (invisibly), after printing preflight diagnostics.

Examples

# \donttest{
grid <- data.frame(x = 1:3)
fl <- flow(grid) |>
  stage("sq", function(x) x^2, schema = returns(result = dbl()))
preflight(fl)
# }