Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
languagejavascript
linenumberstrue
// create new function based on existing one with one or more pre-defined arguments
var fNew = fExisting.uCurry(cArgs);
// use the new function, optionally specifying additional arguments
fNew(args);

Where fExisting is any existing function.

...

Parameters / Functions

Parameter / FunctionTypeMandatoryDescriptionUtil.js version
fExistingFunction(tick)The original function0.5
cArgsOne or more arguments(tick)One or more arguments that will be passed in to fExisting when you access it via fNew0.5
argsAdditional arguments(question)Optionally (based on requirements of fExisting) pass in remaining arguments when calling fNew0.5

Return value

ValueTypeDescriptionUtil.js version
<fNew>FunctionA new function which will automatically set the cArgs arguments for fExisting and then append any additional arguments passed in to fNew.0.5
<fExisting>FunctionIf you do not specify cArgs then the existing function will be returned.0.5

...

A better example is shown in in the Object.uAddProperty() example using  using a curried allianceExistsBetween() function.

See also

  • uCompose – Function.uCompose() – create a new function by merging two existing functions
  • Curry – I based my uCurry function on code samples from this blog.