подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.
This commit is contained in:
parent
2c27a64ea0
commit
73f3735bb6
54 changed files with 1579 additions and 342 deletions
76
docfiles/libraries/v2/deque.js
Normal file
76
docfiles/libraries/v2/deque.js
Normal file
|
@ -0,0 +1,76 @@
|
|||
/**
|
||||
*
|
||||
* @class deque
|
||||
* @extends v2.base
|
||||
* @extends std.deque
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @memberof v2
|
||||
*/
|
||||
function deque(_first_type) {
|
||||
|
||||
}
|
||||
|
||||
deque.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.deque
|
||||
* @param _object {v2.deque}
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +
|
||||
* @memberof v2.deque
|
||||
* @param _object {v2.deque}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.deque
|
||||
* @param _object {v2.deque}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.deque
|
||||
* @returns {v2.deque}
|
||||
*/
|
||||
copy: function () {},
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructor from native array
|
||||
*
|
||||
* @static
|
||||
* @function from_array
|
||||
* @memberof v2.deque
|
||||
* @param _arr {v2.base[]}
|
||||
* @returns {v2.deque}
|
||||
*/
|
||||
deque.from_array = function (_arr) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function type
|
||||
* @memberof v2.deque
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @returns {v2.vt.one_param}
|
||||
*/
|
||||
deque.type = function (_first_type) {
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue