Displaying 1 result from an estimated 1 matches for "any2even".
2006 Mar 29
2
Recall for parent
What's the best way to simulate Recall for parent function?
Consider this one-time recursive code:
alwaysEven <- function(x) {
    handleOdd <- function(x) {
        alwaysEven(x-1)    # use Recall-like here
    }
    return(if (x %% 2) handleOdd(x) else x)
}
any2even <- alwaysEven
rm(alwaysEven)
any2even(3)
----------------------------------------------------------
SIGSIG -- signature too long (core dumped)