goose_pipeline: Create Async Query Pipeline

View source: R/async.R

goose_pipelineR Documentation

Create Async Query Pipeline

Description

Chain multiple async operations together

Usage

goose_pipeline(...)

Arguments

...

Query functions or strings

Value

A promise chain

Examples

## Not run: 
goose_pipeline(
  "Write a data analysis function",
  ~ paste("Add error handling to:", .),
  ~ paste("Add documentation to:", .),
  ~ paste("Create tests for:", .)
) %...>% { cat("Final result:", .) }

## End(Not run)

gooseR documentation built on Feb. 6, 2026, 5:07 p.m.