R/sirt_remove_arguments_function.R

Defines functions sirt_remove_arguments_function

## File Name: sirt_remove_arguments_function.R
## File Version: 0.02

sirt_remove_arguments_function <- function(fun, args)
{
    fun_formals <- formals(fun=fun)
    rem <- setdiff( names(args), names(fun_formals))
    args <- sirt_remove_list_entries(list=args, rem=rem)
    return(args)
}

Try the sirt package in your browser

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

sirt documentation built on Aug. 11, 2023, 5:07 p.m.