add show list methods

This commit is contained in:
Aleksey Chichenkov 2018-09-19 17:14:17 +03:00
parent 4f9a2237a1
commit 27369c00b3
5 changed files with 320 additions and 681 deletions

View file

@ -14,7 +14,7 @@ integer.prototype = {
* @public
* @function =
* @memberof v2.integer
* @prarm {v2.integer} _o
* @param {v2.integer} _o
* @returns {this}
*/
"=": function (_o) {},
@ -25,7 +25,7 @@ integer.prototype = {
* @public
* @function -=
* @memberof v2.integer
* @prarm {v2.integer} _o
* @param {v2.integer} _o
* @returns {this}
*/
"-=": function (_o) {},
@ -36,7 +36,7 @@ integer.prototype = {
* @public
* @function -
* @memberof v2.integer
* @prarm {v2.integer} _o
* @param {v2.integer} _o
* @returns {this}
*/
"-": function (_o) {},