File: still.identical.Rd

package info (click to toggle)
r-cran-bit 4.0.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 996 kB
  • sloc: ansic: 5,083; makefile: 6
file content (26 lines) | stat: -rw-r--r-- 476 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
24
25
26
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/integerutil.R
\name{still.identical}
\alias{still.identical}
\title{Test for C-level identity of two atomic vectors}
\usage{
still.identical(x, y)
}
\arguments{
\item{x}{an atomic vector}

\item{y}{an atomic vector}
}
\value{
logical scalar
}
\description{
Test for C-level identity of two atomic vectors
}
\examples{
x <- 1:2
y <- x
z <- copy_vector(x)
still.identical(y,x)
still.identical(z,x)
}