R/single.ifelse.R

single.ifelse <-
function (test, yes, no) 
{
    if (test) {
        yes
    }
    else {
        no
    }
}
Auburngrads/SMRD documentation built on Sept. 14, 2020, 2:21 a.m.