is_flow_fn: Checks if the function is flow function (as returned by...

Description Usage Arguments Value Examples

View source: R/flow-functions.R

Description

Checks if the function is flow function (as returned by make_flow_fn)

Usage

1

Arguments

fn

A function.

Value

A logical value, whether fn is a flow function.

Examples

1
2
3
fn <- function(x, y) { x + y + 12 }
flowed_function <- flow_fn(2, 3, fn = fn)
is_flow_function <- is_flow_fn(fn = flowed_function)

numeract/rflow documentation built on May 28, 2019, 3:39 p.m.