Print method for token

# S3 method for token
print(x, reveal = FALSE, ...)

reveal(x, ...)

Arguments

x

an object used to select a method.

reveal

Should the token be revealed

...

further arguments passed to or from other methods

Examples

x = "asdf" class(x) = "token" print(x)
#> <hidden token>
print(x, reveal = TRUE)
#> [1] "asdf"