A new bound function.
Creates a new bound function using fn.bind() where the pre-bound arguments are supplied as an
array or tuple value, similar to how fnApply supplies arguments to invocation.
This is useful when the argument list is already available as an array or tuple value, but you want to return a reusable bound function rather than invoke immediately.
A new bound function.
Creates a new bound function using
fn.bind()where the pre-bound arguments are supplied as an array or tuple value, similar to how fnApply supplies arguments to invocation.This is useful when the argument list is already available as an array or tuple value, but you want to return a reusable bound function rather than invoke immediately.