File: setOption.Rd

package info (click to toggle)
r-cran-r.utils 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,936 kB
  • sloc: sh: 18; makefile: 6
file content (40 lines) | stat: -rw-r--r-- 855 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Do not modify this file since it was automatically generated from:
% 
%  setOption.R
% 
% by the Rdoc compiler part of the R.oo package.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\name{setOption}
\alias{setOption.default}
\alias{setOption}

\title{Sets a option in R}

\description{
 Sets a option in R by specifying its name as a \code{\link[base]{character}} string.
}

\usage{
\method{setOption}{default}(x, value, ...)
}

\arguments{
  \item{x}{The name of the option to be set.}
  \item{value}{The new value of the option.}
  \item{...}{Not used.}
}

\value{
  Returns (invisibly) the previous value of the option.
}

\author{Henrik Bengtsson}

\seealso{
 See \code{\link[base]{getOption}}() and "base::options".
}


\keyword{programming}