fn_list {CellBench}R Documentation

Constructor for a function list

Description

Constructor for a list of functions, a thin wrapper around list() which checks that all the inputs are functions and have names

Usage

fn_list(...)

Arguments

...

objects, must all be named

Value

a list of named functions

Examples

flist <- fn_list(
    mean = mean,
    median = median
)

[Package CellBench version 1.6.0 Index]