R/tam_args_CALL_search.R

Defines functions tam_args_CALL_search

Documented in tam_args_CALL_search

## File Name: tam_args_CALL_search.R
## File Version: 0.07

tam_args_CALL_search <- function(args_CALL, variable, default_value)
{
    res <- default_value
    if ( variable %in% names(args_CALL) ){
        res <- args_CALL[[ variable ]]
    }
    return(res)
}

Try the TAM package in your browser

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

TAM documentation built on May 29, 2024, 2:20 a.m.