initi.doc/docfiles/libraries/v2/float.js

48 lines
636 B
JavaScript

/**
*
* @class float
* @memberof v2
* @extends v2.base
* @extends v2.ll.float
* @param _number {number}
*/
function float(_number) {
}
float.prototype = {
/**
*
* @public
* @function copy
* @memberof v2.float
* @returns {v2.float}
*/
copy: function () {}
};
/**
*
* @static
* @function from_number
* @memberof v2.float
* @param _number {number}
* @returns {v2.float}
*/
float.from_number = function (_number) {
};
/**
*
* @static
* @function from_string
* @memberof v2.float
* @param _number {string}
* @returns {v2.float}
*/
float.from_string = function (_number) {
};