R/AAA.R

Defines functions .structure .true .false

## Things which must come first in the package code.

### * Internal utilities.

.false <- function(x) FALSE
.true <- function(x) TRUE

## A fast version of structure().
.structure <-
function(x, ...)
    `attributes<-`(x, c(attributes(x), list(...)))

Try the clue package in your browser

Any scripts or data that you put into this service are public.

clue documentation built on Sept. 23, 2023, 5:06 p.m.