bind_to_function {outbreaker2} | R Documentation |
Encloses argument in a function's environment
Description
This function takes a function f
and a series of named arguments, and
returns a closure of f
which will only rely on one single argument
'param'. This is used to reduce the number of arguments passed around to
likelihood or movement functions. This functionality is used internally when
creating closures of custom moves in bind_moves
.
Usage
bind_to_function(f, ...)
Arguments
f |
The function to which arguments are bound. |
... |
Named arguments to bind to the function's environment. |
Author(s)
Initial code by Rich FitzJohn (see 'references') with some adaptations by Thibaut Jombart
References
Initial code comes from the partially_apply
function in
the 'rodeint' package richfitz/rodeint
.
[Package outbreaker2 version 1.1.3 Index]