toString.sig
From sig v0.0-5
by Richard Cotton
Print a sig object
Prints a function signature object.
Usage
"toString"(x, width = getOption("width"), exdent = nchar(x$name), ...)
"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)
Community examples
Looks like there are no examples yet.