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)
}
alexanderrobitzsch/TAM documentation built on Sept. 16, 2024, 2:04 a.m.