Learn R Programming

mvbutils (version 1.1.1)

autoFF: Callback function for automatic updates of edited functions.

Description

autoFF should not be called directly. It can be installed via addTaskCallback( autoFF), after which it will be invoked after every successful top-level command (i.e. things you type). It automatically updates any functions being edited via fixr.

Usage

autoFF(...) # but don't call it directly
# Use it like this: addTaskCallback( autoFF)

Arguments

...
a placeholder that absorbs the arguments passed into autoFF by the callback mechanism

Value

  • TRUE (for the benefit of callback handling)

Details

autoFF just calls FF. Just typing isn't enough to trigger autoFF; 0 will do, though. To use autoFF, include the USAGE call in your .First.

See Also

addTaskCallback, fixr

Examples

Run this code
## Need to set up "fixr" first
## If you use "fixr", try putting this in your ".First"
addTaskCallback( autoFF)

Run the code above in your browser using DataLab