[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Source view] [Print] [Project Stats]
(no description)
File Size: | 1610 lines (50 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
sprintf(key) X-Ref |
No description |
vsprintf(fmt, argv) X-Ref |
No description |
sprintf_format(parse_tree, argv) X-Ref |
No description |
sprintf_parse(fmt) X-Ref |
No description |
__webpack_require__(moduleId) X-Ref |
No description |
memize(fn, options) X-Ref |
Accepts a function to be memoized, and returns a new memoized function, with optional options. param: {F} fn Function to memoize. param: {MemizeOptions} [options] Options object. return: {((...args: Parameters<F>) => ReturnType<F>) & MemizeMemoizedFunction} Memoized function. |
memoized() X-Ref |
No description |
sprintf_sprintf(format, ...args) X-Ref |
Returns a formatted string. If an error occurs in applying the format, the original format string is returned. param: {string} format The format of the string to generate. param: {...*} args Arguments to apply to the format. return: {string} The formatted string. |
postfix( expression ) X-Ref |
Given a C expression, returns the equivalent postfix (Reverse Polish) notation terms as an array. If a postfix string is desired, simply `.join( ' ' )` the result. param: {string} expression C expression. return: {string[]} Postfix terms. |
evaluate( postfix, variables ) X-Ref |
Given an array of postfix terms and operand variables, returns the result of the postfix evaluation. param: {string[]} postfix Postfix terms. param: {Object} variables Operand variables. return: {*} Result of evaluation. |
compile( expression ) X-Ref |
Given a C expression, returns a function which can be called to evaluate its result. param: {string} expression C expression. return: {(variables?:{[variable:string]:*})=>*} Compiled evaluator. |
pluralForms( expression ) X-Ref |
Given a C expression, returns a function which, when called with a value, evaluates the result with the value assumed to be the "n" variable of the expression. The result will be coerced to its numeric equivalent. param: {string} expression C expression. return: {Function} Evaluator function. |
getPluralExpression( pf ) X-Ref |
Given a specific locale data's config `plural_forms` value, returns the expression. param: {string} pf Locale data plural forms. return: {string} Plural forms expression. |
Tannin( data, options ) X-Ref |
Tannin constructor. param: {TanninLocaleData} data Jed-formatted locale data. param: {TanninOptions} [options] Tannin options. |
Generated : Thu Nov 21 08:20:01 2024 | Cross-referenced by PHPXref |