add v2 lib

This commit is contained in:
Aleksey Chichenkov 2018-09-19 14:49:06 +03:00
parent d666a13d72
commit 8ca929c8e5
18 changed files with 252 additions and 15 deletions

View 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 () {}
};