View source for Module:Func
Appearance
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
--------------------------------------------------------------------------------
-- This module provies helper functions for manipulating Lua functions.
--
-- @module func
-- @alias p
-- @author ExE Boss
--------------------------------------------------------------------------------
require("strict");
local checkTypeMulti = require("libraryUtil").checkTypeMulti;
local p = {};
--------------------------------------------------------------------------------
-- Creates a bound function that calls `func` with the varargs passed to `bind`
-- preceding the varargs passed to the newly created bound function.
--
-- @param {function} func
-- @param {any} ...
-- @return {function}
-- @see https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/bind
--------------------------------------------------------------------------------
000
1:0
Template used on this page:
Return to Module:Func.