Skip to content

Commit

Permalink
Re-document with roxygen2 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Sep 25, 2014
1 parent 7940f38 commit 4b79329
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by roxygen2 (4.0.1): do not edit by hand
# Generated by roxygen2 (4.0.2): do not edit by hand

S3method(print,R6)
S3method(print,R6ClassGenerator)
Expand Down
16 changes: 8 additions & 8 deletions man/R6Class.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% Generated by roxygen2 (4.0.1): do not edit by hand
% Generated by roxygen2 (4.0.2): do not edit by hand
\name{R6Class}
\alias{R6}
\alias{R6Class}
Expand All @@ -24,20 +24,20 @@ and non-functions.}
superclass. This is captured as an unevaluated expression which is
evaluated in \code{parent_env} each time an object is instantiated.}

\item{lock}{Should the environments of the generated objects be locked? If
lcoked, new members can't be added to the objects.}
\item{class}{Should a class attribute be added to the object? Default is
\code{TRUE}. If \code{FALSE}, the objects will simply look like
environments, which is what they are.}
\item{portable}{If \code{TRUE} (the default), this class will work with
inheritance across different packages. Note that when this is enabled,
fields and members must be accessed with \code{self$x} or
\code{private$x}; they can't be accessed with just \code{x}.}

\item{parent_env}{An environment to use as the parent of newly-created
objects.}
\item{class}{Should a class attribute be added to the object? Default is
\code{TRUE}. If \code{FALSE}, the objects will simply look like
environments, which is what they are.}
\item{lock}{Should the environments of the generated objects be locked? If
lcoked, new members can't be added to the objects.}
}
\description{
R6 objects are essentially environments, structured in a way that makes them
Expand Down

0 comments on commit 4b79329

Please sign in to comment.