Skip to contents

%<-% registers a method_tidy() into the tidy registry. The left-hand side must be a making_tidy() call.

Usage

lhs %<-% rhs

Arguments

lhs

A making_tidy_call object from making_tidy().

rhs

A method_tidy() object.

Value

NULL invisibly, called for its side effects.

Examples

making_tidy(TTEST, x_by) %<-% method_tidy(
    default = function(.x, ...) { ... },
    boot = function(.x, ...) { ... }
)