MINI MINI MANI MO

Path : /opt/oracle/product/18c/dbhomeXE/R/library/OREembed/doc/man/en/
File Upload :
Current File : //opt/oracle/product/18c/dbhomeXE/R/library/OREembed/doc/man/en/ore.list-class.Rd

%
% 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{Class \code{ore.list}}
\description{
  An \code{\linkS4class{ore}} class for representing and manipulating
  \code{list} data stored in an Oracle database.
}
\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