diff --git a/typescript-stl/typescript-stl.d.ts b/typescript-stl/typescript-stl.d.ts index 9e491ff258..5a83a405cd 100644 --- a/typescript-stl/typescript-stl.d.ts +++ b/typescript-stl/typescript-stl.d.ts @@ -2744,8 +2744,8 @@ declare namespace std.base { /** *
An abstract container.
* - *
- * There is not a single type of {@link Iterator bidirectional iterator}: {@link IContainer Each container}
* may define its own specific iterator type able to iterate through it and access its elements.
- *
+ *
+ *
*
* Container properties
@@ -2865,8 +2865,8 @@ declare namespace std {
*
+ *
*
- *
+ *
+ *
*
All objects thrown by components of the standard library are derived from this class. * Therefore, all standard exceptions can be caught by catching this type by reference.
* - * + * * * @reference http://www.cplusplus.com/reference/exception/exception * @author Jeongho NamIt is used as a base class for several logical error exceptions.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/logic_error * @author Jeongho NamNo component of the standard library throws exceptions of this type. It is designed as a standard * exception to be thrown by programs.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/domain_error * @author Jeongho NamIt is a standard exception that can be thrown by programs. Some components of the standard library * also throw exceptions of this type to signal invalid arguments.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/invalid_argument * @author Jeongho NamIt is a standard exception that can be thrown by programs. Some components of the standard library, * such as vector and string also throw exceptions of this type to signal errors resizing.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/length_error * @author Jeongho NamIt is used as a base class for several runtime error exceptions.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/runtime_error * @author Jeongho NamIt is a standard exception that can be thrown by programs. Some components of the standard library * also throw exceptions of this type to signal range errors.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/overflow_error * @author Jeongho NamNo component of the standard library throws exceptions of this type. It is designed as a standard * exception to be thrown by programs.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/underflow_error * @author Jeongho NamIt is a standard exception that can be thrown by programs. Some components of the standard library * also throw exceptions of this type to signal range errors.
* - * + * * * @reference http://www.cplusplus.com/reference/stdexcept/range_error * @author Jeongho NamAn iterator of {@link MapContainer map container}.
* - * + * * * @author Jeongho NamA reverse-iterator of {@link MapContainer map container}.
* - * + * * * @author Jeongho NamElements with equivalent keys are grouped together in the same bucket and in such a way that * an iterator can iterate through all of them. Iterators in the container are doubly linked iterators.
* - *
- *
+ *
+ *
*
An iterator of a Set.
* - * + * * * @author Jeongho NamA reverse-iterator of Set.
* - * + * * * @param
- *
+ *
+ *
*
- *
+ *
+ *
*
- *
+ *
+ *
*
Hash buckets storing {@link SetIterator SetIterators}.
* - *
- *
+ *
+ *
*
There is not a single type of {@link IArrayIterator random-access iterator}: Each container may define its * own specific iterator type able to iterate through it and access its elements.
* - *
- * {@link IContainer} is an interface designed for sequence containers. Sequence containers of STL
* (Standard Template Library) are based on the {@link IContainer}.
- * An interface for deque
- * An interface for linear containers.
- *
+ *
+ *
*
* @reference http://www.cplusplus.com/reference/iterator/RandomAccessIterator
@@ -10183,8 +10183,8 @@ declare namespace std.base {
*
+ *
*
* Container properties
@@ -10375,8 +10375,8 @@ declare namespace std.base {
/**
*
+ *
*
* @author Jeongho Nam
+ *
*