| Line 1... |
Line 1... |
| 1 |
% File src/library/base/man/noquote.Rd
|
1 |
% File src/library/base/man/noquote.Rd
|
| 2 |
% Part of the R package, https://www.R-project.org
|
2 |
% Part of the R package, https://www.R-project.org
|
| 3 |
% Copyright 1995-2018 R Core Team
|
3 |
% Copyright 1995-2021 R Core Team
|
| 4 |
% Distributed under GPL 2 or later
|
4 |
% Distributed under GPL 2 or later
|
| 5 |
|
5 |
|
| 6 |
\name{noquote}
|
6 |
\name{noquote}
|
| 7 |
\alias{noquote}
|
7 |
\alias{noquote}
|
| 8 |
\alias{print.noquote}
|
8 |
\alias{print.noquote}
|
| Line 33... |
Line 33... |
| 33 |
\details{
|
33 |
\details{
|
| 34 |
\code{noquote} returns its argument as an object of class
|
34 |
\code{noquote} returns its argument as an object of class
|
| 35 |
\code{"noquote"}. There is a method for \code{c()} and subscript
|
35 |
\code{"noquote"}. There is a method for \code{c()} and subscript
|
| 36 |
method (\code{"[.noquote"}) which ensures that the class is not lost
|
36 |
method (\code{"[.noquote"}) which ensures that the class is not lost
|
| 37 |
by subsetting. The print method (\code{print.noquote}) prints
|
37 |
by subsetting. The print method (\code{print.noquote}) prints
|
| 38 |
character strings \emph{without} quotes (\code{"\dots"}).
|
38 |
character strings \emph{without} quotes (\code{"...."} is printed as \verb{....}).
|
| 39 |
|
39 |
|
| 40 |
If \code{right} is specified in a call \code{print(x, right=*)}, it
|
40 |
If \code{right} is specified in a call \code{print(x, right=*)}, it
|
| 41 |
takes precedence over a possible \code{right} setting of \code{x},
|
41 |
takes precedence over a possible \code{right} setting of \code{x},
|
| 42 |
e.g., created by \code{x <- noquote(*, right=TRUE)}.
|
42 |
e.g., created by \code{x <- noquote(*, right=TRUE)}.
|
| 43 |
|
43 |
|