подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.
This commit is contained in:
parent
2c27a64ea0
commit
73f3735bb6
54 changed files with 1579 additions and 342 deletions
75
docfiles/libraries/v2/address.js
Normal file
75
docfiles/libraries/v2/address.js
Normal file
|
@ -0,0 +1,75 @@
|
|||
/**
|
||||
*
|
||||
* @class address
|
||||
* @extends v2.base
|
||||
* @extends std.deque
|
||||
* @memberof v2
|
||||
*/
|
||||
function address() {
|
||||
|
||||
}
|
||||
|
||||
address.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.address
|
||||
* @param _object {v2.address}
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +
|
||||
* @memberof v2.address
|
||||
* @param _object {v2.address}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.address
|
||||
* @param _object {v2.address}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.address
|
||||
* @returns {v2.address}
|
||||
*/
|
||||
copy: function () {},
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructor from native array
|
||||
*
|
||||
* @static
|
||||
* @function from_array
|
||||
* @memberof v2.address
|
||||
* @param _arr {string[]}
|
||||
* @returns {v2.address}
|
||||
*/
|
||||
address.from_array = function (_arr) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function type
|
||||
* @memberof v2.address
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @returns {v2.vt.one_param}
|
||||
*/
|
||||
address.type = function (_first_type) {
|
||||
|
||||
};
|
31
docfiles/libraries/v2/base.js
Normal file
31
docfiles/libraries/v2/base.js
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
*
|
||||
* @class base
|
||||
* @memberof v2
|
||||
* @param _type {number}
|
||||
*/
|
||||
function base(_type) {
|
||||
|
||||
}
|
||||
|
||||
base.prototype = {
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function type
|
||||
* @memberof v2.base
|
||||
* @returns {number}
|
||||
*/
|
||||
type: function () {}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @access static
|
||||
* @function instance_of
|
||||
* @memberof v2.base
|
||||
* @param instance {v2}
|
||||
*/
|
||||
base.instance_of = function (instance) {
|
||||
|
||||
};
|
20
docfiles/libraries/v2/boolean.js
Normal file
20
docfiles/libraries/v2/boolean.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
/**
|
||||
*
|
||||
* @class boolean
|
||||
* @memberof v2
|
||||
* @extends v2.base
|
||||
* @extends v2.ll.boolean
|
||||
*/
|
||||
function boolean() {
|
||||
|
||||
}
|
||||
|
||||
boolean.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.boolean
|
||||
* @returns {v2.boolean}
|
||||
*/
|
||||
copy: function () {},
|
||||
};
|
76
docfiles/libraries/v2/deque.js
Normal file
76
docfiles/libraries/v2/deque.js
Normal file
|
@ -0,0 +1,76 @@
|
|||
/**
|
||||
*
|
||||
* @class deque
|
||||
* @extends v2.base
|
||||
* @extends std.deque
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @memberof v2
|
||||
*/
|
||||
function deque(_first_type) {
|
||||
|
||||
}
|
||||
|
||||
deque.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.deque
|
||||
* @param _object {v2.deque}
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +
|
||||
* @memberof v2.deque
|
||||
* @param _object {v2.deque}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.deque
|
||||
* @param _object {v2.deque}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.deque
|
||||
* @returns {v2.deque}
|
||||
*/
|
||||
copy: function () {},
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructor from native array
|
||||
*
|
||||
* @static
|
||||
* @function from_array
|
||||
* @memberof v2.deque
|
||||
* @param _arr {v2.base[]}
|
||||
* @returns {v2.deque}
|
||||
*/
|
||||
deque.from_array = function (_arr) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function type
|
||||
* @memberof v2.deque
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @returns {v2.vt.one_param}
|
||||
*/
|
||||
deque.type = function (_first_type) {
|
||||
|
||||
};
|
|
@ -2,47 +2,18 @@
|
|||
*
|
||||
* @class integer
|
||||
* @memberof v2
|
||||
* @extends v2.base
|
||||
* @extends v2.ll.int64
|
||||
* @param low {number}
|
||||
* @param high {number}
|
||||
*/
|
||||
function integer() {
|
||||
function integer(low, high) {
|
||||
|
||||
}
|
||||
|
||||
integer.prototype = {
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.integer
|
||||
* @param {v2.integer} _o
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function -=
|
||||
* @memberof v2.integer
|
||||
* @param {v2.integer} _o
|
||||
* @returns {this}
|
||||
*/
|
||||
"-=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function -
|
||||
* @memberof v2.integer
|
||||
* @param {v2.integer} _o
|
||||
* @returns {this}
|
||||
*/
|
||||
"-": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function copy
|
||||
|
@ -51,3 +22,27 @@ integer.prototype = {
|
|||
*/
|
||||
copy: function () {}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function from_number
|
||||
* @memberof v2.integer
|
||||
* @param _number {number}
|
||||
* @returns {v2.integer}
|
||||
*/
|
||||
integer.from_number = function (_number) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function from_string
|
||||
* @memberof v2.integer
|
||||
* @param _number {string}
|
||||
* @returns {v2.integer}
|
||||
*/
|
||||
integer.from_string = function (_number) {
|
||||
|
||||
};
|
||||
|
|
76
docfiles/libraries/v2/list.js
Normal file
76
docfiles/libraries/v2/list.js
Normal file
|
@ -0,0 +1,76 @@
|
|||
/**
|
||||
*
|
||||
* @class list
|
||||
* @extends v2.base
|
||||
* @extends std.list
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @memberof v2
|
||||
*/
|
||||
function list(_first_type) {
|
||||
|
||||
}
|
||||
|
||||
list.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.list
|
||||
* @param _object {v2.list}
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +
|
||||
* @memberof v2.list
|
||||
* @param _object {v2.list}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.list
|
||||
* @param _object {v2.list}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.list
|
||||
* @returns {v2.list}
|
||||
*/
|
||||
copy: function () {},
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructor from native array
|
||||
*
|
||||
* @static
|
||||
* @function from_array
|
||||
* @memberof v2.list
|
||||
* @param _arr {v2.base[]}
|
||||
* @returns {v2.list}
|
||||
*/
|
||||
list.from_array = function (_arr) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function type
|
||||
* @memberof v2.list
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @returns {v2.vt.one_param}
|
||||
*/
|
||||
list.type = function (_first_type) {
|
||||
|
||||
};
|
87
docfiles/libraries/v2/map.js
Normal file
87
docfiles/libraries/v2/map.js
Normal file
|
@ -0,0 +1,87 @@
|
|||
/**
|
||||
*
|
||||
* @class map
|
||||
* @extends v2.base
|
||||
* @extends std.map
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @param _second_type {v2.vt.base}
|
||||
* @memberof v2
|
||||
*/
|
||||
function map(_first_type, _second_type) {
|
||||
|
||||
}
|
||||
|
||||
map.prototype = {
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.map
|
||||
* @param _map {v2.map}
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_map) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.map
|
||||
* @returns {v2.map}
|
||||
*/
|
||||
copy: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function put
|
||||
* @memberof v2.map
|
||||
* @param _key {v2.base}
|
||||
* @param _value {v2.base}
|
||||
*/
|
||||
put: function (_key, _value) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function exist
|
||||
* @memberof v2.map
|
||||
* @param _key {v2.base}
|
||||
* @returns {boolean}
|
||||
*/
|
||||
exist: function (_key) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.map
|
||||
* @param _map {v2.map}
|
||||
*/
|
||||
"+=": function (_map) {},
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructor from native array
|
||||
*
|
||||
* @static
|
||||
* @function from_array
|
||||
* @memberof v2.map
|
||||
* @param _arr {v2.base[]}
|
||||
* @returns {v2.map}
|
||||
*/
|
||||
map.from_array = function (_arr) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function type
|
||||
* @memberof v2.map
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @returns {v2.vt.one_param}
|
||||
*/
|
||||
map.type = function (_first_type) {
|
||||
|
||||
};
|
21
docfiles/libraries/v2/model_type.js
Normal file
21
docfiles/libraries/v2/model_type.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
*
|
||||
* @class model_type
|
||||
* @extends v2.base
|
||||
* @extends v2.ll.string
|
||||
* @param _str {string}
|
||||
* @memberof v2
|
||||
*/
|
||||
function model_type(_str) {
|
||||
|
||||
}
|
||||
|
||||
model_type.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.model_type
|
||||
* @returns {v2.model_type}
|
||||
*/
|
||||
copy: function () {},
|
||||
};
|
76
docfiles/libraries/v2/set.js
Normal file
76
docfiles/libraries/v2/set.js
Normal file
|
@ -0,0 +1,76 @@
|
|||
/**
|
||||
*
|
||||
* @class set
|
||||
* @extends v2.base
|
||||
* @extends std.set
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @memberof v2
|
||||
*/
|
||||
function set(_first_type) {
|
||||
|
||||
}
|
||||
|
||||
set.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.set
|
||||
* @param _object {v2.set}
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +
|
||||
* @memberof v2.set
|
||||
* @param _object {v2.set}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.set
|
||||
* @param _object {v2.set}
|
||||
* @returns {this}
|
||||
*/
|
||||
"+=": function (_object) {},
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.set
|
||||
* @returns {v2.set}
|
||||
*/
|
||||
copy: function () {},
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructor from native array
|
||||
*
|
||||
* @static
|
||||
* @function from_array
|
||||
* @memberof v2.set
|
||||
* @param _arr {v2.base[]}
|
||||
* @returns {v2.set}
|
||||
*/
|
||||
set.from_array = function (_arr) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @function type
|
||||
* @memberof v2.set
|
||||
* @param _first_type {v2.vt.base}
|
||||
* @returns {v2.vt.one_param}
|
||||
*/
|
||||
set.type = function (_first_type) {
|
||||
|
||||
};
|
|
@ -2,6 +2,8 @@
|
|||
*
|
||||
* @class string
|
||||
* @memberof v2
|
||||
* @extends v2.ll.string
|
||||
* @extends v2.base
|
||||
*/
|
||||
function string() {
|
||||
|
||||
|
@ -9,144 +11,11 @@ function string() {
|
|||
|
||||
string.prototype = {
|
||||
/**
|
||||
* Членовозня
|
||||
*
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o фывафывафва
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.string
|
||||
* @return {v2.string} sdfasfaf
|
||||
* @return {v2.string}
|
||||
*/
|
||||
copy: function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function <
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {boolean}
|
||||
*/
|
||||
"<": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function <=
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {boolean}
|
||||
*/
|
||||
"<=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function ==
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {boolean}
|
||||
*/
|
||||
"==": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function ==
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {boolean}
|
||||
*/
|
||||
"!=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function >
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {boolean}
|
||||
*/
|
||||
">": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function >=
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {boolean}
|
||||
*/
|
||||
">=": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function +
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {v2.string}
|
||||
*/
|
||||
"+": function (_o) {},
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _o
|
||||
* @returns {this}
|
||||
*/
|
||||
"+=": function (_o) {},
|
||||
|
||||
/**
|
||||
* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum
|
||||
*
|
||||
* @public
|
||||
* @function assign
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _string asdfasfasdf
|
||||
* @param {number} _first afasdfasdfasdf
|
||||
* @param {number} _last asdfasfdasdfas
|
||||
* @returns {this}
|
||||
*/
|
||||
assign: function (_string, _first, _last) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function at
|
||||
* @memberof v2.string
|
||||
* @param {number} _index
|
||||
* @returns {string}
|
||||
*/
|
||||
at: function (_index) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function back
|
||||
* @memberof v2.string
|
||||
* @param {number} _index
|
||||
* @returns {string}
|
||||
*/
|
||||
back: function (_index) {}
|
||||
copy: function () {},
|
||||
};
|
||||
|
|
60
docfiles/libraries/v2/type.js
Normal file
60
docfiles/libraries/v2/type.js
Normal file
|
@ -0,0 +1,60 @@
|
|||
/**
|
||||
*
|
||||
* @class type
|
||||
* @extends v2.base
|
||||
* @memberof v2
|
||||
*/
|
||||
function type() {
|
||||
|
||||
}
|
||||
|
||||
type.prototype = {
|
||||
/**
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.type
|
||||
* @returns {v2.type}
|
||||
*/
|
||||
copy: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function get_type
|
||||
* @memberof v2.type
|
||||
* @returns {v2.vt.base}
|
||||
*/
|
||||
get_type: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function to_number
|
||||
* @memberof v2.type
|
||||
* @returns {number}
|
||||
*/
|
||||
to_number: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* @public
|
||||
* @function to_number
|
||||
* @memberof v2.type
|
||||
* @param other {v2.type}
|
||||
* @returns {boolean}
|
||||
*/
|
||||
"==": function (other) {
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @static
|
||||
* @name type
|
||||
* @type {v2.vt.base}
|
||||
*/
|
||||
type.type = new v2.vt.base(-1);
|
6
docfiles/libraries/v2/v2.js
Normal file
6
docfiles/libraries/v2/v2.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
/**
|
||||
*
|
||||
* @group library
|
||||
* @namespace v2
|
||||
*/
|
||||
var v2 = function () {};
|
99
docfiles/libraries/v2/variable_container.js
Normal file
99
docfiles/libraries/v2/variable_container.js
Normal file
|
@ -0,0 +1,99 @@
|
|||
/** @typedef {v2.variable_container} v2.vc */
|
||||
|
||||
/**
|
||||
*
|
||||
* @class variable_container
|
||||
* @extends v2.base
|
||||
* @extends std.unordered_map
|
||||
* @memberof v2
|
||||
*/
|
||||
function variable_container() {
|
||||
|
||||
}
|
||||
|
||||
variable_container.prototype = {
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.variable_container
|
||||
* @param _variable_container {v2.variable_container}
|
||||
* @returns {this}
|
||||
*/
|
||||
"=": function (_variable_container) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function =
|
||||
* @memberof v2.variable_container
|
||||
* @param _variable_container {v2.variable_container}
|
||||
* @returns {boolean}
|
||||
*/
|
||||
"==": function (_variable_container) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function +=
|
||||
* @memberof v2.variable_container
|
||||
* @param _variable_container {v2.variable_container}
|
||||
*/
|
||||
"+=": function (_variable_container) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function copy
|
||||
* @memberof v2.variable_container
|
||||
* @returns {v2.variable_container}
|
||||
*/
|
||||
copy: function () {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function put
|
||||
* @memberof v2.variable_container
|
||||
* @param _key {v2.base}
|
||||
* @param _value {v2.base}
|
||||
*/
|
||||
put: function (_key, _value) {},
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function exist
|
||||
* @memberof v2.variable_container
|
||||
* @param _key {v2.base}
|
||||
* @returns {boolean}
|
||||
*/
|
||||
exist: function (_key) {}
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructor from native array
|
||||
*
|
||||
* @static
|
||||
* @function from_array
|
||||
* @memberof v2.variable_container
|
||||
* @param _arr {v2.base[]}
|
||||
* @returns {v2.variable_container}
|
||||
*/
|
||||
variable_container.from_array = function (_arr) {
|
||||
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Constructor from native object
|
||||
*
|
||||
* @static
|
||||
* @function from_object
|
||||
* @memberof v2.variable_container
|
||||
* @param _obj {Object<string, v2.base>}
|
||||
* @returns {v2.variable_container}
|
||||
*/
|
||||
variable_container.from_object = function (_obj) {
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue