File: address.Rd

package info (click to toggle)
r-cran-data.table 1.14.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 15,936 kB
  • sloc: ansic: 15,680; sh: 100; makefile: 6
file content (23 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
\name{address}
\alias{address}
\title{ Address in RAM of a variable }
\description{
    Returns the pointer address of its argument.
}
\usage{
    address(x)
}
\arguments{
  \item{x}{ Anything. }
}
\details{
Sometimes useful in determining whether a value has been copied or not, programmatically.
}
\value{
    A character vector length 1.
}
\references{
\url{https://stackoverflow.com/a/10913296/403310} (but implemented in C without using \code{.Internal(inspect())})
}
\keyword{ data }