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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/attrutil.R
\name{unattr}
\alias{unattr}
\title{Attribute removal}
\usage{
unattr(x)
}
\arguments{
\item{x}{any R object}
}
\value{
a similar object with attributes removed
}
\description{
Returns object with attributes removed
}
\details{
attribute removal copies the object as usual
}
\examples{
bit(2)[]
unattr(bit(2)[])
}
\seealso{
\code{\link{attributes}}, \code{\link{setattributes}},
\code{\link{unclass}}
}
\author{
Jens Oehlschlägel
}
\keyword{attribute}
|