добавил примеры по работе с деревьями
This commit is contained in:
parent
73f3735bb6
commit
59d791e97f
12 changed files with 446 additions and 22 deletions
81
docfiles/libraries/tools/reference.js
Normal file
81
docfiles/libraries/tools/reference.js
Normal file
|
@ -0,0 +1,81 @@
|
|||
/**
|
||||
*
|
||||
* @class reference
|
||||
* @memberof tools
|
||||
* @param _reset {function}
|
||||
* @param _copy {function}
|
||||
* @param _value {function}
|
||||
*/
|
||||
function reference(_reset, _copy, _value) {
|
||||
|
||||
}
|
||||
|
||||
reference.prototype = {
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function init
|
||||
* @memberof tools.reference
|
||||
*/
|
||||
init: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function deinit
|
||||
* @memberof tools.reference
|
||||
*/
|
||||
deinit: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function check
|
||||
* @memberof tools.reference
|
||||
*/
|
||||
check: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof tools.reference
|
||||
* @returns {tools.reference}
|
||||
*/
|
||||
copy: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function id
|
||||
* @memberof tools.reference
|
||||
* @returns {number}
|
||||
*/
|
||||
id: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function reset
|
||||
* @memberof tools.reference
|
||||
*/
|
||||
reset: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function value
|
||||
* @memberof tools.reference
|
||||
* @returns {Object}
|
||||
*/
|
||||
value: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function *
|
||||
* @memberof tools.reference
|
||||
* @returns {Object}
|
||||
*/
|
||||
"*": function () {},
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue