MINI MINI MANI MO
%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
%
\name{ore.list-class}
\docType{class}
\alias{ore.list}
\alias{ore.list-class}
\alias{$,ore.list-method}
\alias{[[,ore.list,character,missing-method}
\alias{[[,ore.list,numeric,missing-method}
\alias{as.ore,list-method}
\alias{as.ore.list}
\alias{as.ore.list,list-method}
\alias{as.ore.list,ore.list-method}
\alias{is.ore.list}
\alias{length,ore.list-method}
\alias{names,ore.list-method}
\alias{ore.pull,ore.list-method}
\alias{ore.push,list-method}
\alias{show,ore.list-method}
\title{
类 \code{ore.list}
}
\description{
用于表示并操纵 Oracle 数据库中存储的
\code{\linkS4class{ore}} 数据的 \code{list} 类。
}
\section{List Methods}{
\describe{
\item{}{
\code{x[[i]]}, \code{x$name}:
Returns the selected element as an \code{\linkS4class{ore.object}}
object.
}
\item{}{
\code{\link[base]{length}(x)}:
Returns a \code{\link{integer}} value representing the number of
elements.
}
\item{}{
\code{\link[base]{names}(x)}:
Returns a \code{\link[base]{character}} vector containing the
element names.
}
}
}
\references{
\href{http://www.oracle.com/technetwork/database/database-technologies/r/r-enterprise/documentation/index.html}{Oracle R Enterprise}
}
\author{
Oracle \email{oracle-r-enterprise@oracle.com}
}
\note{
See the corresponding \R documentation for the functions listed above.
}
\seealso{
\code{\linkS4class{ore}},
\code{\linkS4class{ore.object}}
}
\examples{
x <- list(A = 1, B = "value", C = TRUE)
X <- ore.push(x)
class(X) # ore.list
X$A
X[[2]]
X[["C"]]
length(X)
names(X)
X
y <- ore.pull(X)
class(y) # list
}
\keyword{classes}
\keyword{ORE}
OHA YOOOO