подправил стили для кода примеров. Добавил std, v2, tools, v2.ll.

This commit is contained in:
Aleksey Chichenkov 2018-09-25 15:14:18 +03:00
parent 2c27a64ea0
commit 73f3735bb6
54 changed files with 1579 additions and 342 deletions

View file

@ -0,0 +1,12 @@
/**
*
* @class deque
* @memberof std
*/
function deque() {
}
deque.prototype = {
};

View file

@ -0,0 +1,12 @@
/**
*
* @class list
* @memberof std
*/
function list() {
}
list.prototype = {
};

View file

@ -0,0 +1,12 @@
/**
*
* @class map
* @memberof std
*/
function map() {
}
map.prototype = {
};

View file

@ -0,0 +1,12 @@
/**
*
* @class set
* @memberof std
*/
function set() {
}
set.prototype = {
};

View file

@ -0,0 +1,6 @@
/**
*
* @group library
* @namespace std
*/
function std() {}

View file

@ -0,0 +1,12 @@
/**
*
* @class unordered_map
* @memberof std
*/
function unordered_map() {
}
unordered_map.prototype = {
};