add v2 lib
This commit is contained in:
parent
d666a13d72
commit
8ca929c8e5
18 changed files with 252 additions and 15 deletions
53
docfiles/libraries/v2/integer.js
Normal file
53
docfiles/libraries/v2/integer.js
Normal file
|
@ -0,0 +1,53 @@
|
|||
/**
|
||||
*
|
||||
* @class integer
|
||||
* @memberof v2
|
||||
*/
|
||||
function integer() {
|
||||
|
||||
}
|
||||
|
||||
integer.prototype = {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.integer
|
||||
* @prarm {v2.integer} _o
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function -=
|
||||
* @memberof v2.integer
|
||||
* @prarm {v2.integer} _o
|
||||
* @returns {this}
|
||||
*/
|
||||
"-=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function -
|
||||
* @memberof v2.integer
|
||||
* @prarm {v2.integer} _o
|
||||
* @returns {this}
|
||||
*/
|
||||
"-": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.integer
|
||||
* @returns {v2.integer}
|
||||
*/
|
||||
copy: function () {}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue