R/attach.environment.sirt.R

Defines functions .attach.environment.sirt

## File Name: attach.environment.sirt.R
## File Version: 0.081


#--- attach all elements of an object in an environment
.attach.environment.sirt <- function( res, envir )
{
    CC <- length(res)
    for (cc in 1L:CC){
        assign( names(res)[cc], res[[cc]], envir=envir )
    }
}

Try the sirt package in your browser

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

sirt documentation built on Nov. 5, 2025, 6:48 p.m.