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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/H5constants.R
\name{$.types_env}
\alias{$.types_env}
\alias{[[.types_env}
\title{Retrieving a copy of a type}
\usage{
\method{$}{types_env}(x, name)
\method{[[}{types_env}(x, name)
}
\arguments{
\item{x}{The environment to request it from}
\item{name}{The name of the type that is requested}
}
\value{
Returns an object that is a copy of a type that was requested
}
\description{
Retrieving a copy of a type
}
\details{
The types are stored in the environment \code{\link{h5types}}. These types should not be accessed
directly. Therefor, the \code{$}-operator is overloaded to ensure that every type that is accessed is a copy of the
original type
}
\author{
Holger Hoefling
}
|