RLLVMCompile (version 0.2-0)

getCompilerHandlers: Retrieve list of compiler handler functions

Description

This function returns a collection of functions which are used to compile different parts of R code. This allows R programmers to merge their own handler functions with the defaults to customize how the compilation is done.

Usage

getCompilerHandlers(...)

Arguments

a collection of name=function pairs where the function is the new handler and the name identifies its role.

Value

A list of functions.

See Also

compileFunction

Examples

Run this code
 getCompilerHandlers( `call` = function(expr, env, ir, ...) { browser() } )

Run the code above in your browser using DataLab