2018-09-19 11:49:06 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @class integer
|
|
|
|
* @memberof v2
|
|
|
|
*/
|
|
|
|
function integer() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
integer.prototype = {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function =
|
|
|
|
* @memberof v2.integer
|
2018-09-19 14:14:17 +00:00
|
|
|
* @param {v2.integer} _o
|
2018-09-19 11:49:06 +00:00
|
|
|
* @returns {this}
|
|
|
|
*/
|
|
|
|
"=": function (_o) {},
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function -=
|
|
|
|
* @memberof v2.integer
|
2018-09-19 14:14:17 +00:00
|
|
|
* @param {v2.integer} _o
|
2018-09-19 11:49:06 +00:00
|
|
|
* @returns {this}
|
|
|
|
*/
|
|
|
|
"-=": function (_o) {},
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function -
|
|
|
|
* @memberof v2.integer
|
2018-09-19 14:14:17 +00:00
|
|
|
* @param {v2.integer} _o
|
2018-09-19 11:49:06 +00:00
|
|
|
* @returns {this}
|
|
|
|
*/
|
|
|
|
"-": function (_o) {},
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function copy
|
|
|
|
* @memberof v2.integer
|
|
|
|
* @returns {v2.integer}
|
|
|
|
*/
|
|
|
|
copy: function () {}
|
|
|
|
};
|