Function guerrilla::patch5

source ·
pub fn patch5<R, A, B, C, D, E>(
    target: fn(_: A, _: B, _: C, _: D, _: E) -> R,
    func: fn(_: A, _: B, _: C, _: D, _: E) -> R
) -> PatchGuard
Expand description

Patch replaces a function with another. Accepts closures as replacement functions as long as they do not bind to the environment.