% Generated by roxygen2: do not edit by hand % Please edit documentation in R/proxy.R \name{vec_proxy} \alias{vec_proxy} \alias{vec_restore} \title{Proxy and restore} \usage{ vec_proxy(x, ...) vec_restore(x, to, ...) } \arguments{ \item{x}{A vector.} \item{...}{These dots are for future extensions and must be empty.} \item{to}{The original vector to restore to.} } \description{ \ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#experimental}{\figure{lifecycle-experimental.svg}{options: alt='[Experimental]'}}}{\strong{[Experimental]}} \code{vec_proxy()} returns the data structure containing the values of a vector. This data structure is usually the vector itself. In this case the proxy is the \link[base:identity]{identity function}, which is the default \code{vec_proxy()} method. Only experts should implement special \code{vec_proxy()} methods, for these cases: \itemize{ \item A vector has vectorised attributes, i.e. metadata for each element of the vector. These \emph{record types} are implemented in vctrs by returning a data frame in the proxy method. If you're starting your class from scratch, consider deriving from the \code{\link[=new_rcrd]{rcrd}} class. It implements the appropriate data frame proxy and is generally the preferred way to create a record class. \item When you're implementing a vector on top of a non-vector type, like an environment or an S4 object. This is currently only partially supported. \item S3 lists are considered scalars by default. This is the safe choice for list objects such as returned by \code{stats::lm()}. To declare that your S3 list class is a vector, you normally add \code{"list"} to the right of your class vector. Explicit inheritance from list is generally the preferred way to declare an S3 list in R, for instance it makes it possible to dispatch on \code{generic.list} S3 methods. If you can't modify your class vector, you can implement an identity proxy (i.e. a proxy method that just returns its input) to let vctrs know this is a vector list and not a scalar. } \code{vec_restore()} is the inverse operation of \code{vec_proxy()}. It should only be called on vector proxies. \itemize{ \item It undoes the transformations of \code{vec_proxy()}. \item It restores attributes and classes. These may be lost when the memory values are manipulated. For example slicing a subset of a vector's proxy causes a new proxy to be allocated. } By default vctrs restores all attributes and classes automatically. You only need to implement a \code{vec_restore()} method if your class has attributes that depend on the data. } \section{Proxying}{ You should only implement \code{vec_proxy()} when your type is designed around a non-vector class. I.e. anything that is not either: \itemize{ \item An atomic vector \item A bare list \item A data frame } In this case, implement \code{vec_proxy()} to return such a vector class. The vctrs operations such as \code{\link[=vec_slice]{vec_slice()}} are applied on the proxy and \code{vec_restore()} is called to restore the original representation of your type. The most common case where you need to implement \code{vec_proxy()} is for S3 lists. In vctrs, S3 lists are treated as scalars by default. This way we don't treat objects like model fits as vectors. To prevent vctrs from treating your S3 list as a scalar, unclass it in the \code{vec_proxy()} method. For instance, here is the definition for \code{list_of}: \if{html}{\out{