print.sig: Print a sig object

View source: R/sig.R

toString.sigR Documentation

Print a sig object

Description

Prints a function signature object.

Usage

## S3 method for class 'sig'
toString(x, width = getOption("width"), exdent = nchar(x$name), ...)

## S3 method for class 'sig'
print(x, width = getOption("width"), exdent = nchar(x$name), ...)

Arguments

x

An object of class sig.

width

Width of string to display.

exdent

Non-negative integer specifying the indentation of subsequent lines in the string.

...

Passed to toString

Value

toString creates a string representation of a function signature. print is mostly invoked for the side effect of printing a function signature, invisibly returning its input.

Examples

print_default_sig <- sig(print.default)
print(print_default_sig)
print(print_default_sig, width = 40)
print(print_default_sig, width = 40, exdent = 2)
toString(print_default_sig)

sig documentation built on April 21, 2022, 5:07 p.m.