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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/generics.R
\name{Metadata}
\alias{Metadata}
\alias{is.sorted}
\alias{is.sorted<-}
\alias{na.count}
\alias{na.count<-}
\alias{nvalid}
\alias{nunique}
\alias{nunique<-}
\alias{nties}
\alias{nties<-}
\title{Generics related to cache access}
\usage{
is.sorted(x, ...)
is.sorted(x, ...) <- value
na.count(x, ...)
na.count(x, ...) <- value
nvalid(x, ...)
nunique(x, ...)
nunique(x, ...) <- value
nties(x, ...)
nties(x, ...) <- value
}
\arguments{
\item{x}{some object}
\item{\dots}{ignored}
\item{value}{value assigned on responsibility of the user}
}
\value{
see help of the available methods
}
\description{
These generics are packaged here for methods in packages \code{bit64} and
\code{ff}.
}
\details{
see help of the available methods
}
\examples{
methods("na.count")
}
\seealso{
\code{\link[bit64]{is.sorted.integer64}},
\code{\link[bit64:is.sorted.integer64]{na.count.integer64}},
\code{\link[bit64:is.sorted.integer64]{nvalid.integer64}},
\code{\link[bit64:is.sorted.integer64]{nunique.integer64}}, \code{\link[bit64:is.sorted.integer64]{nties.integer64}}
\cr
}
\author{
Jens Oehlschlägel <Jens.Oehlschlaegel@truecluster.com>
}
\keyword{environment}
\keyword{methods}
|