Function guerrilla::patch4

source ·
pub fn patch4<R, A, B, C, D>(
    target: fn(_: A, _: B, _: C, _: D) -> R,
    func: fn(_: A, _: B, _: C, _: D) -> 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.