exprs_auto_name {rlang}R Documentation

Ensure that all elements of a list of expressions are named

Description

This gives default names to unnamed elements of a list of expressions (or expression wrappers such as formulas or quosures). exprs_auto_name() deparses the expressions with expr_name() by default. quos_auto_name() deparses with quo_name().

Usage

exprs_auto_name(exprs, width = NULL, printer = NULL)

quos_auto_name(quos, width = NULL)

Arguments

exprs

A list of expressions.

width

Deprecated. Maximum width of names.

printer

Deprecated. A function that takes an expression and converts it to a string. This function must take an expression as the first argument and width as the second argument.

quos

A list of quosures.


[Package rlang version 0.4.0 Index]