diff --git a/docs/standard-library/allocators-functions.md b/docs/standard-library/allocators-functions.md index adcaabbd4e..fafefa6034 100644 --- a/docs/standard-library/allocators-functions.md +++ b/docs/standard-library/allocators-functions.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: macros" title: " macros" -ms.date: "11/04/2016" +description: "Learn more about: macros" +ms.date: 11/04/2016 f1_keywords: ["allocators/std::ALLOCATOR_DECL", "allocators/std::CACHE_CHUNKLIST", "allocators/std::CACHE_FREELIST", "allocators/std::CACHE_SUBALLOC", "allocators/std::SYNC_DEFAULT"] -ms.assetid: 9cb5ee07-1ff9-4594-ae32-3c8c6efb511a helpviewer_keywords: ["std::ALLOCATOR_DECL [C++]", "std::CACHE_CHUNKLIST [C++]", "std::CACHE_FREELIST [C++]", "std::CACHE_SUBALLOC [C++]", "std::SYNC_DEFAULT [C++]"] --- # `` macros @@ -72,8 +71,6 @@ Yields `stdext::allocators::cache_chunklist`. #define CACHE_CHUNKLIST ``` -### Remarks - ## CACHE_FREELIST Yields `stdext::allocators::cache_freelist`. @@ -82,8 +79,6 @@ Yields `stdext::allocators::cache_freelist`. #define CACHE_FREELIST(max) ``` -### Remarks - ## CACHE_SUBALLOC Yields `stdext::allocators::cache_suballoc`. @@ -92,8 +87,6 @@ Yields `stdext::allocators::cache_suballoc`. #define CACHE_SUBALLOC ``` -### Remarks - ## SYNC_DEFAULT Yields a synchronization filter. diff --git a/docs/standard-library/basic-string-class.md b/docs/standard-library/basic-string-class.md index 554d5ba8d8..bb7dcf00f5 100644 --- a/docs/standard-library/basic-string-class.md +++ b/docs/standard-library/basic-string-class.md @@ -569,8 +569,6 @@ reference back(); A reference to the last element of the string, which must be non-empty. -### Remarks - ## `basic_string::basic_string` Constructs a string that is empty, initialized by specific characters, or is a copy of all or part of another string object or C style (null-terminated) string. @@ -1473,8 +1471,6 @@ const_reverse_iterator crend() const; A `const` reverse iterator that addresses the location succeeding the last element in a reversed string (the location that had preceded the first element in the unreversed string). -### Remarks - ## `basic_string::_Copy_s` Copies at most a specified number of characters from an indexed position in a source string to a target character array. @@ -2885,8 +2881,6 @@ reference front(); A reference to the first element of the string, which must be non-empty. -### Remarks - ## `basic_string::get_allocator` Returns a copy of the allocator object used to construct the string. diff --git a/docs/standard-library/basic-stringbuf-class.md b/docs/standard-library/basic-stringbuf-class.md index 465e997c4f..7fde918659 100644 --- a/docs/standard-library/basic-stringbuf-class.md +++ b/docs/standard-library/basic-stringbuf-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: basic_stringbuf Class" title: "basic_stringbuf Class" +description: "Learn more about: basic_stringbuf Class" ms.date: 06/10/2022 f1_keywords: ["sstream/std::basic_stringbuf", "sstream/std::basic_stringbuf::allocator_type", "sstream/std::basic_stringbuf::char_type", "sstream/std::basic_stringbuf::int_type", "sstream/std::basic_stringbuf::off_type", "sstream/std::basic_stringbuf::pos_type", "sstream/std::basic_stringbuf::traits_type", "sstream/std::basic_stringbuf::overflow", "sstream/std::basic_stringbuf::pbackfail", "sstream/std::basic_stringbuf::seekoff", "sstream/std::basic_stringbuf::seekpos", "sstream/std::basic_stringbuf::str", "sstream/std::basic_stringbuf::underflow"] helpviewer_keywords: ["std::basic_stringbuf [C++]", "std::basic_stringbuf [C++], allocator_type", "std::basic_stringbuf [C++], char_type", "std::basic_stringbuf [C++], int_type", "std::basic_stringbuf [C++], off_type", "std::basic_stringbuf [C++], pos_type", "std::basic_stringbuf [C++], traits_type", "std::basic_stringbuf [C++], overflow", "std::basic_stringbuf [C++], pbackfail", "std::basic_stringbuf [C++], seekoff", "std::basic_stringbuf [C++], seekpos", "std::basic_stringbuf [C++], str", "std::basic_stringbuf [C++], underflow"] -ms.assetid: 40c85f9e-42a5-4a65-af5c-23c8e3bf8113 ms.custom: devdivchpfy22 --- @@ -365,8 +364,6 @@ void basic_stringbuf::swap(basic_stringbuf& other) *other*\ The basic_stringbuf whose contents will be swapped with this basic_stringbuf. -### Remarks - ## basic_stringbuf::operator= Assigns the contents of the basic_stringbuf on the right side of the operator to the basic_stringbuf on the left side. @@ -380,8 +377,6 @@ basic_stringbuf& basic_stringbuf:: operator=(const basic_stringbuf& other) *other*\ A basic_stringbuf whose contents, including locale traits, will be assigned to the stringbuf on the left side of the operator. -### Remarks - ## See also [Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md)\ diff --git a/docs/standard-library/cache-chunklist-class.md b/docs/standard-library/cache-chunklist-class.md index 914921951d..e2de788bc7 100644 --- a/docs/standard-library/cache-chunklist-class.md +++ b/docs/standard-library/cache-chunklist-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: cache_chunklist Class" title: "cache_chunklist Class" -ms.date: "11/04/2016" +description: "Learn more about: cache_chunklist Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::cache_chunklist", "allocators/stdext::cache_chunklist::allocate", "allocators/stdext::cache_chunklist::deallocate"] helpviewer_keywords: ["stdext::cache_chunklist", "stdext::cache_chunklist [C++], allocate", "stdext::cache_chunklist [C++], deallocate"] -ms.assetid: af19eccc-4ae7-4a34-bbb2-81e397424cb9 --- # cache_chunklist Class @@ -64,8 +63,6 @@ The number of elements in the array to be allocated. A pointer to the allocated object. -### Remarks - ## cache_chunklist::cache_chunklist Constructs an object of type `cache_chunklist`. @@ -74,8 +71,6 @@ Constructs an object of type `cache_chunklist`. cache_chunklist(); ``` -### Remarks - ## cache_chunklist::deallocate Frees a specified number of objects from storage beginning at a specified position. @@ -92,8 +87,6 @@ A pointer to the first object to be deallocated from storage. *count*\ The number of objects to be deallocated from storage. -### Remarks - ## See also [\](../standard-library/allocators-header.md) diff --git a/docs/standard-library/cache-freelist-class.md b/docs/standard-library/cache-freelist-class.md index 1df5612d0d..71faf8ebc0 100644 --- a/docs/standard-library/cache-freelist-class.md +++ b/docs/standard-library/cache-freelist-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: cache_freelist Class" title: "cache_freelist Class" -ms.date: "11/04/2016" +description: "Learn more about: cache_freelist Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::cache_freelist", "allocators/stdext::cache_freelist::allocate", "allocators/stdext::cache_freelist::deallocate"] helpviewer_keywords: ["stdext::cache_freelist", "stdext::cache_freelist [C++], allocate", "stdext::cache_freelist [C++], deallocate"] -ms.assetid: 840694de-36ba-470f-8dae-2b723d5a8cd9 --- # cache_freelist Class @@ -67,8 +66,6 @@ The number of elements in the array to be allocated. A pointer to the allocated object. -### Remarks - ## cache_freelist::cache_freelist Constructs an object of type `cache_freelist`. @@ -77,8 +74,6 @@ Constructs an object of type `cache_freelist`. cache_freelist(); ``` -### Remarks - ## cache_freelist::deallocate Frees a specified number of objects from storage beginning at a specified position. @@ -95,8 +90,6 @@ A pointer to the first object to be deallocated from storage. *count*\ The number of objects to be deallocated from storage. -### Remarks - ## See also [\](../standard-library/allocators-header.md) diff --git a/docs/standard-library/cache-suballoc-class.md b/docs/standard-library/cache-suballoc-class.md index 26c070fcad..12f111137d 100644 --- a/docs/standard-library/cache-suballoc-class.md +++ b/docs/standard-library/cache-suballoc-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: cache_suballoc Class" title: "cache_suballoc Class" -ms.date: "11/04/2016" +description: "Learn more about: cache_suballoc Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::cache_suballoc", "allocators/stdext::cache_suballoc::allocate", "allocators/stdext::cache_suballoc::deallocate"] helpviewer_keywords: ["stdext::cache_suballoc", "stdext::cache_suballoc [C++], allocate", "stdext::cache_suballoc [C++], deallocate"] -ms.assetid: 9ea9c5e9-1dcc-45d0-b3a7-a56a93d88898 --- # cache_suballoc Class @@ -64,8 +63,6 @@ The number of elements in the array to be allocated. A pointer to the allocated object. -### Remarks - ## cache_suballoc::cache_suballoc Constructs an object of type `cache_suballoc`. @@ -74,8 +71,6 @@ Constructs an object of type `cache_suballoc`. cache_suballoc(); ``` -### Remarks - ## cache_suballoc::deallocate Frees a specified number of objects from storage beginning at a specified position. @@ -92,8 +87,6 @@ A pointer to the first object to be deallocated from storage. *count*\ The number of objects to be deallocated from storage. -### Remarks - ## See also [\](../standard-library/allocators-header.md) diff --git a/docs/standard-library/error-category-class.md b/docs/standard-library/error-category-class.md index 953f7753f9..0eabf941a9 100644 --- a/docs/standard-library/error-category-class.md +++ b/docs/standard-library/error-category-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: error_category Class" title: "error_category Class" +description: "Learn more about: error_category Class" ms.date: 06/15/2022 f1_keywords: ["system_error/std::error_category", "system_error/std::error_category::value_type", "system_error/std::error_category::default_error_condition", "system_error/std::error_category::equivalent", "system_error/std::error_category::message", "system_error/std::error_category::name"] helpviewer_keywords: ["std::error_category", "std::error_category::value_type", "std::error_category::default_error_condition", "std::error_category::equivalent", "std::error_category::message", "std::error_category::name"] -ms.assetid: e0a71e14-852d-4905-acd6-5f8ed426706d ms.custom: devdivchpfy22 --- @@ -71,8 +70,6 @@ The error code value to store in the [error_condition](../standard-library/error Returns `error_condition(_Errval, *this)`. -### Remarks - ### equivalent Returns a value that specifies whether error objects are equivalent. @@ -129,8 +126,6 @@ The error code value to describe. Returns a descriptive name of the error code *val* for the category. If the error code is unrecognized, returns `"unknown error"`. -#### Remarks - ### name Returns the name of the category. diff --git a/docs/standard-library/error-code-class.md b/docs/standard-library/error-code-class.md index 9026b35dca..f7cc93b6fb 100644 --- a/docs/standard-library/error-code-class.md +++ b/docs/standard-library/error-code-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: error_code Class" title: "error_code Class" -ms.date: "11/04/2016" +description: "Learn more about: error_code Class" +ms.date: 11/04/2016 f1_keywords: ["system_error/std::error_code", "system_error/std::error_code::value_type", "system_error/std::error_code::assign", "system_error/std::error_code::category", "system_error/std::error_code::clear", "system_error/std::error_code::default_error_condition", "system_error/std::error_code::message", "system_error/std::error_code::operator bool"] helpviewer_keywords: ["std::error_code", "std::error_code::value_type", "std::error_code::assign", "std::error_code::category", "std::error_code::clear", "std::error_code::default_error_condition", "std::error_code::message"] -ms.assetid: c09b4a96-cb14-4281-a319-63543f9b2b4a --- # error_code Class @@ -82,8 +81,6 @@ Returns the error category. const error_category& category() const; ``` -#### Remarks - ### clear Clears the error code value and category. diff --git a/docs/standard-library/error-condition-class.md b/docs/standard-library/error-condition-class.md index 41b06861bb..ffa0030a44 100644 --- a/docs/standard-library/error-condition-class.md +++ b/docs/standard-library/error-condition-class.md @@ -84,8 +84,6 @@ const error_category& category() const; A reference to the stored error category -#### Remarks - ### clear Clears the error code value and category. @@ -264,8 +262,6 @@ value_type value() const; The stored error code value of type [value_type](#value_type). -#### Remarks - ### value_type A type that represents the stored error code value. diff --git a/docs/standard-library/forward-list-class.md b/docs/standard-library/forward-list-class.md index 5e8e0a35bd..65e5db6042 100644 --- a/docs/standard-library/forward-list-class.md +++ b/docs/standard-library/forward-list-class.md @@ -168,8 +168,6 @@ iterator before_begin(); A forward iterator that points just before the first element of the sequence (or just before the end of an empty sequence). -### Remarks - ## `begin` Returns an iterator addressing the first element in a forward list. @@ -183,8 +181,6 @@ iterator begin(); A forward iterator that points at the first element of the sequence (or just beyond the end of an empty sequence). -### Remarks - ## `cbefore_begin` Returns a const iterator addressing the position before the first element in a forward list. @@ -197,8 +193,6 @@ const_iterator cbefore_begin() const; A forward iterator that points just before the first element of the sequence (or just before the end of an empty sequence). -### Remarks - ## `cbegin` Returns a **`const`** iterator that addresses the first element in the range. @@ -285,8 +279,6 @@ typedef typename Allocator::const_pointer const_pointer; ``` -### Remarks - ## `const_reference` A type that provides a constant reference to an element in the forward list. @@ -295,8 +287,6 @@ A type that provides a constant reference to an element in the forward list. typedef typename Allocator::const_reference const_reference; ``` -### Remarks - ## `difference_type` A signed integer type that can be used to represent the number of elements of a forward list in a range between elements pointed to by iterators. @@ -577,8 +567,6 @@ size_type max_size() const; The length of the longest sequence that the object can control. -### Remarks - ## `merge` Combines two sorted sequences into a single sorted sequence in linear time. Removes the elements from the argument list, and inserts them into this `forward_list`. The two lists should be sorted by the same compare function object before the call to `merge`. The combined list will be sorted by that compare function object. diff --git a/docs/standard-library/freelist-class.md b/docs/standard-library/freelist-class.md index 743dececd8..2d3d4286e5 100644 --- a/docs/standard-library/freelist-class.md +++ b/docs/standard-library/freelist-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: freelist Class" title: "freelist Class" -ms.date: "11/04/2016" +description: "Learn more about: freelist Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::freelist", "allocators/stdext::freelist::pop", "allocators/stdext::freelist::push"] helpviewer_keywords: ["stdext::freelist", "stdext::freelist [C++], pop", "stdext::freelist [C++], push"] -ms.assetid: 8ad7e35c-4c80-4479-8ede-1a2497b06d71 --- # freelist Class @@ -56,8 +55,6 @@ Constructs an object of type `freelist`. freelist(); ``` -### Remarks - ## freelist::pop Removes the first memory block from the free list. diff --git a/docs/standard-library/hash-map-class.md b/docs/standard-library/hash-map-class.md index 61f681bca0..e7f121e554 100644 --- a/docs/standard-library/hash-map-class.md +++ b/docs/standard-library/hash-map-class.md @@ -371,8 +371,6 @@ Erases all the elements of a `hash_map`. void clear(); ``` -### Remarks - ### Example The following example demonstrates the use of the `hash_map::clear` member function. @@ -463,8 +461,6 @@ A type that provides a reference to a **`const`** element stored in a `hash_map` typedef list::const_reference const_reference; ``` -### Remarks - ### Example ```cpp @@ -917,8 +913,6 @@ bool empty() const; **`true`** if the `hash_map` is empty; **`false`** if the `hash_map` is nonempty. -### Remarks - ### Example ```cpp @@ -1048,8 +1042,6 @@ A pair of iterators such that the first is the [`lower_bound`](#lower_bound) of To access the first iterator of a pair `pr` returned by the member function, use `pr.first` and to dereference the lower bound iterator, use `*(pr.first)`. To access the second iterator of a pair `pr` returned by the member function, use `pr.second` and to dereference the upper bound iterator, use `*(pr.second)`. -### Remarks - ### Example ```cpp @@ -1815,8 +1807,6 @@ An [`iterator`](#iterator) or [`const_iterator`](#const_iterator) that addresses If the return value of `lower_bound` is assigned to a `const_iterator`, the `hash_map` object can't be modified. If the return value of `lower_bound` is assigned to a `iterator`, the `hash_map` object can be modified. -### Remarks - ### Example ```cpp @@ -1904,8 +1894,6 @@ size_type max_size() const; The maximum possible length of the `hash_map`. -### Remarks - ### Example ```cpp @@ -2196,8 +2184,6 @@ A type that provides a reference to an element stored in a `hash_map`. typedef list::reference reference; ``` -### Remarks - ### Example ```cpp @@ -2378,8 +2364,6 @@ size_type size() const; The current length of the `hash_map`. -### Remarks - ### Example The following example demonstrates the use of the `hash_map::size` member function. @@ -2424,8 +2408,6 @@ An unsigned integer type that can represent the number of elements in a `hash_ma typedef list::size_type size_type; ``` -### Remarks - ### Example See example for [`size`](#size) for an example of how to declare and use `size_type` @@ -2528,8 +2510,6 @@ An [`iterator`](#iterator) or [`const_iterator`](#const_iterator) that addresses If the return value is assigned to a `const_iterator`, the `hash_map` object can't be modified. If the return value is assigned to an `iterator`, the `hash_map` object can be modified. -### Remarks - ### Example ```cpp diff --git a/docs/standard-library/hash-multimap-class.md b/docs/standard-library/hash-multimap-class.md index 3884eb36cf..eaa3fad497 100644 --- a/docs/standard-library/hash-multimap-class.md +++ b/docs/standard-library/hash-multimap-class.md @@ -326,8 +326,6 @@ Erases all the elements of a hash_multimap. void clear(); ``` -### Remarks - ### Example The following example demonstrates the use of the hash_multimap::clear member function. @@ -418,8 +416,6 @@ A type that provides a reference to a **`const`** element stored in a hash_multi typedef list::const_reference const_reference; ``` -### Remarks - ### Example ```cpp @@ -875,8 +871,6 @@ bool empty() const; **`true`** if the hash_multimap is empty; **`false`** if the hash_multimap is nonempty. -### Remarks - ### Example ```cpp @@ -1006,8 +1000,6 @@ A pair of iterators such that the first is the [lower_bound](#lower_bound) of th To access the first iterator of a pair `pr` returned by the member function, use `pr`. **first** and to dereference the lower bound iterator, use \*(`pr`. **first**). To access the second iterator of a pair `pr` returned by the member function, use `pr`. **second** and to dereference the upper bound iterator, use \*(`pr`. **second**). -### Remarks - ### Example ```cpp @@ -1685,8 +1677,6 @@ An [iterator](#iterator) or [const_iterator](#const_iterator) that addresses the If the return value of `lower_bound` is assigned to a `const_iterator`, the hash_multimap object cannot be modified. If the return value of `lower_bound` is assigned to an `iterator`, the hash_multimap object can be modified. -### Remarks - ### Example ```cpp @@ -1792,8 +1782,6 @@ size_type max_size() const; The maximum possible length of the hash_multimap. -### Remarks - ### Example ```cpp @@ -1988,8 +1976,6 @@ A type that provides a reference to an element stored in a hash_multimap. typedef list::reference reference; ``` -### Remarks - ### Example ```cpp @@ -2164,8 +2150,6 @@ size_type size() const; The current length of the hash_multimap. -### Remarks - ### Example The following example demonstrates the use of the hash_multimap::size member function. @@ -2210,8 +2194,6 @@ An unsigned integer type that counts the number of elements in a hash_multimap. typedef list::size_type size_type; ``` -### Remarks - ### Example See the example for [size](#size) for an example of how to declare and use `size_type` @@ -2312,8 +2294,6 @@ An [iterator](#iterator) or [const_iterator](#const_iterator) that addresses the If the return value of `upper_bound` is assigned to a `const_iterator`, the hash_multimap object cannot be modified. If the return value of `upper_bound` is assigned to a `iterator`, the hash_multimap object can be modified. -### Remarks - ### Example ```cpp diff --git a/docs/standard-library/hash-multiset-class.md b/docs/standard-library/hash-multiset-class.md index 7b40ba2623..8be4252e16 100644 --- a/docs/standard-library/hash-multiset-class.md +++ b/docs/standard-library/hash-multiset-class.md @@ -308,8 +308,6 @@ Erases all the elements of a hash_multiset. void clear(); ``` -### Remarks - ### Example ```cpp @@ -388,8 +386,6 @@ A type that provides a reference to a **`const`** element stored in a hash_multi typedef list::const_reference const_reference; ``` -### Remarks - ### Example ```cpp @@ -712,8 +708,6 @@ The value of an element to be inserted into the [hash_multiset](../standard-libr The `emplace` member function returns an iterator that points to the position where the new element was inserted. -### Remarks - ### Example ```cpp @@ -811,8 +805,6 @@ bool empty() const; **`true`** if the hash_multiset is empty; **`false`** if the hash_multiset is nonempty. -### Remarks - ### Example ```cpp @@ -1591,8 +1583,6 @@ The argument key to be compared with the sort key of an element from the hash_mu An [iterator](#iterator) or [const_iterator](#const_iterator) that addresses the location of the first element in a hash_multiset with a key that is equal to or greater than the argument key, or that addresses the location succeeding the last element in the hash_multiset if no match is found for the key. -### Remarks - ### Example ```cpp @@ -1651,8 +1641,6 @@ size_type max_size() const; The maximum possible length of the hash_multiset. -### Remarks - ### Example ```cpp @@ -1845,8 +1833,6 @@ A type that provides a reference to an element stored in a hash_multiset. typedef list::reference reference; ``` -### Remarks - ### Example ```cpp @@ -2004,8 +1990,6 @@ size_type size() const; The current length of the hash_multiset. -### Remarks - ### Example ```cpp @@ -2047,8 +2031,6 @@ An unsigned integer type that can represent the number of elements in a hash_mul typedef list::size_type size_type; ``` -### Remarks - ### Example See example for [size](#size) for an example of how to declare and use `size_type` @@ -2149,8 +2131,6 @@ The argument key to be compared with the sort key of an element from the hash_mu An [iterator](#iterator) or [const_iterator](#const_iterator) that addresses the location of the first element in a hash_multiset with a key greater than the argument key, or that addresses the location succeeding the last element in the hash_multiset if no match is found for the key. -### Remarks - ### Example ```cpp diff --git a/docs/standard-library/hash-set-class.md b/docs/standard-library/hash-set-class.md index 89d2607646..642b9a7199 100644 --- a/docs/standard-library/hash-set-class.md +++ b/docs/standard-library/hash-set-class.md @@ -316,8 +316,6 @@ Erases all the elements of a hash_set. void clear(); ``` -### Remarks - ### Example ```cpp @@ -396,8 +394,6 @@ A type that provides a reference to a **`const`** element stored in a hash_set f typedef list::const_reference const_reference; ``` -### Remarks - ### Example ```cpp @@ -720,8 +716,6 @@ The value of an element to be inserted into the [hash_set](../standard-library/h The `emplace` member function returns a pair whose **`bool`** component returns **`true`** if an insertion was make and **`false`** if the `hash_set` already contained an element whose key had an equivalent value in the ordering, and whose iterator component returns the address where a new element was inserted or where the element was already located. -### Remarks - ### Example ```cpp @@ -819,8 +813,6 @@ bool empty() const; **`true`** if the hash_set is empty; **`false`** if the hash_set is nonempty. -### Remarks - ### Example ```cpp @@ -940,8 +932,6 @@ A pair of iterators where the first is the [lower_bound](../standard-library/set To access the first iterator of a pair pr returned by the member function, use `pr`. **first**, and to dereference the lower bound iterator, use \*(`pr`. **first**). To access the second iterator of a pair `pr` returned by the member function, use `pr`. **second**, and to dereference the upper bound iterator, use \*(`pr`. **second**). -### Remarks - ### Example ```cpp @@ -1583,8 +1573,6 @@ The argument key to be compared with the sort key of an element from the hash_se An `iterator` or `const_iterator` that addresses the location of an element in a hash_set that with a key that is equal to or greater than the argument key or that addresses the location succeeding the last element in the hash_set if no match is found for the key. -### Remarks - ### Example ```cpp @@ -1650,8 +1638,6 @@ size_type max_size() const; The maximum possible length of the hash_set. -### Remarks - ### Example ```cpp @@ -1844,8 +1830,6 @@ A type that provides a reference to an element stored in a hash_set. typedef list::reference reference; ``` -### Remarks - ### Example ```cpp @@ -2003,8 +1987,6 @@ size_type size() const; The current length of the hash_set. -### Remarks - ### Example ```cpp @@ -2046,8 +2028,6 @@ An unsigned integer type that can represent the number of elements in a hash_set typedef list::size_type size_type; ``` -### Remarks - ### Example See the example for [size](#size) for an example of how to declare and use `size_type` @@ -2148,8 +2128,6 @@ The argument key to be compared with the sort key of an element from the hash_se An `iterator` or `const_iterator` that addresses the location of an element in a hash_set that with a key that is equal to or greater than the argument key, or that addresses the location succeeding the last element in the hash_set if no match is found for the key. -### Remarks - ### Example ```cpp diff --git a/docs/standard-library/hash-set.md b/docs/standard-library/hash-set.md index 9f11c05422..e058191584 100644 --- a/docs/standard-library/hash-set.md +++ b/docs/standard-library/hash-set.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: " title: "" -ms.date: "11/04/2016" +description: "Learn more about: " +ms.date: 11/04/2016 f1_keywords: [""] helpviewer_keywords: ["hash_set header"] -ms.assetid: 6b556967-c808-4869-9b4d-f9e030864435 --- # `` @@ -19,8 +18,6 @@ Defines the container class templates hash_set and hash_multiset and their suppo #include ``` -## Remarks - ### Operators |Hash_set version|Hash_multiset version|Description| diff --git a/docs/standard-library/iterator-concepts.md b/docs/standard-library/iterator-concepts.md index 027dd4b630..a5e205079f 100644 --- a/docs/standard-library/iterator-concepts.md +++ b/docs/standard-library/iterator-concepts.md @@ -455,8 +455,6 @@ The iterator type. *`S`*\ The sentinel type to test. -### Remarks - ### Example: `sized_sentinel_for` The following example uses the `sized_sentinel_for` concept to verify that the sentinel for a `vector` can be subtracted from the vectors iterator in constant time: diff --git a/docs/standard-library/memory-functions.md b/docs/standard-library/memory-functions.md index 5163c789b0..5de848e295 100644 --- a/docs/standard-library/memory-functions.md +++ b/docs/standard-library/memory-functions.md @@ -36,8 +36,6 @@ The object or function for which to obtain the true address. The actual address of the object or function referenced by *`value`*, even if an overloaded `operator&()` exists. -### Remarks - ## `align` Fits storage of the given size, aligned by the given alignment specification, into the first possible address of the given storage. diff --git a/docs/standard-library/sync-none-class.md b/docs/standard-library/sync-none-class.md index 1966997f4a..df55c41667 100644 --- a/docs/standard-library/sync-none-class.md +++ b/docs/standard-library/sync-none-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: sync_none Class" title: "sync_none Class" -ms.date: "11/04/2016" +description: "Learn more about: sync_none Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::sync_none", "allocators/stdext::sync_none::allocate", "allocators/stdext::sync_none::deallocate", "allocators/stdext::sync_none::equals"] helpviewer_keywords: ["stdext::sync_none", "stdext::sync_none [C++], allocate", "stdext::sync_none [C++], deallocate", "stdext::sync_none [C++], equals"] -ms.assetid: f7473cee-14f3-4fe1-88bc-68cd085e59e1 --- # sync_none Class @@ -93,8 +92,6 @@ The cache object to compare for equality. The member function always returns **`true`**. -### Remarks - ## See also [\](../standard-library/allocators-header.md) diff --git a/docs/standard-library/sync-per-container-class.md b/docs/standard-library/sync-per-container-class.md index 796756f428..2a164a0a0b 100644 --- a/docs/standard-library/sync-per-container-class.md +++ b/docs/standard-library/sync-per-container-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: sync_per_container Class" title: "sync_per_container Class" -ms.date: "11/04/2016" +description: "Learn more about: sync_per_container Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::sync_per_container", "allocators/stdext::sync_per_container::equals"] helpviewer_keywords: ["sync_per_container class"] -ms.assetid: 0b4b2904-b668-4d94-a422-d4f919cbffab --- # sync_per_container Class @@ -55,8 +54,6 @@ The cache object to compare for equality. The member function always returns **`false`**. -### Remarks - ## See also [\](../standard-library/allocators-header.md) diff --git a/docs/standard-library/sync-per-thread-class.md b/docs/standard-library/sync-per-thread-class.md index 6a4b004724..aa715f4c69 100644 --- a/docs/standard-library/sync-per-thread-class.md +++ b/docs/standard-library/sync-per-thread-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: sync_per_thread Class" title: "sync_per_thread Class" -ms.date: "11/04/2016" +description: "Learn more about: sync_per_thread Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::sync_per_thread", "allocators/stdext::sync_per_thread::allocate", "allocators/stdext::sync_per_thread::deallocate", "allocators/stdext::sync_per_thread::equals"] helpviewer_keywords: ["stdext::sync_per_thread", "stdext::sync_per_thread [C++], allocate", "stdext::sync_per_thread [C++], deallocate", "stdext::sync_per_thread [C++], equals"] -ms.assetid: 47bf75f8-5b02-4760-b1d3-3099d08fe14c --- # sync_per_thread Class @@ -97,8 +96,6 @@ The cache object to compare for equality. **`false`** if no cache object has been allocated for this object or for *Other* in the current thread. Otherwise it returns the result of applying `operator==` to the two cache objects. -### Remarks - ## See also [\](../standard-library/allocators-header.md) diff --git a/docs/standard-library/sync-shared-class.md b/docs/standard-library/sync-shared-class.md index 67ae7354c9..bd722d3a53 100644 --- a/docs/standard-library/sync-shared-class.md +++ b/docs/standard-library/sync-shared-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: sync_shared Class" title: "sync_shared Class" -ms.date: "11/04/2016" +description: "Learn more about: sync_shared Class" +ms.date: 11/04/2016 f1_keywords: ["allocators/stdext::sync_shared", "allocators/stdext::sync_shared::allocate", "allocators/stdext::sync_shared::deallocate", "allocators/stdext::sync_shared::equals"] helpviewer_keywords: ["stdext::sync_shared", "stdext::sync_shared [C++], allocate", "stdext::sync_shared [C++], deallocate", "stdext::sync_shared [C++], equals"] -ms.assetid: cab3af9e-3d1a-4f2c-8580-0f89e5687d8e --- # sync_shared Class @@ -97,8 +96,6 @@ The cache to compare for equality. **`true`** if the result of `cache.equals(Other.cache)`, where `cache` represents the cache object, is **`true`**; otherwise, **`false`**. -### Remarks - ## See also [\](../standard-library/allocators-header.md) diff --git a/docs/standard-library/system-error-enums.md b/docs/standard-library/system-error-enums.md index 2551b9345a..9ad2a05696 100644 --- a/docs/standard-library/system-error-enums.md +++ b/docs/standard-library/system-error-enums.md @@ -1,9 +1,8 @@ --- -description: "Learn more about: enums" title: " enums" -ms.date: "11/04/2016" +description: "Learn more about: enums" +ms.date: 11/04/2016 f1_keywords: ["system_error/std::errc", "system_error/std::io_errc"] -ms.assetid: b21321b7-404a-40de-8777-a85b77c6fa58 --- # `` enums @@ -94,8 +93,6 @@ class errc { }; ``` -### Remarks - ## io_errc Provides symbolic names for the error conditions in \. Can be used to create [error_condition](../standard-library/error-condition-class.md) objects to be compared with the value that's returned by the [ios_base::failure](../standard-library/ios-base-class.md#failure)`code()` function. diff --git a/docs/standard-library/wstring-convert-class.md b/docs/standard-library/wstring-convert-class.md index 8b6789b128..41c72fa855 100644 --- a/docs/standard-library/wstring-convert-class.md +++ b/docs/standard-library/wstring-convert-class.md @@ -1,10 +1,9 @@ --- -description: "Learn more about: wstring_convert Class" title: "wstring_convert Class" -ms.date: "11/04/2016" +description: "Learn more about: wstring_convert Class" +ms.date: 11/04/2016 f1_keywords: ["wstring/stdext::cvt::wstring_convert", "locale/std::wstring_convert::byte_string", "locale/std::wstring_convert::wide_string", "locale/std::wstring_convert::state_type", "locale/std::wstring_convert::int_type", "locale/std::wstring_convert::from_bytes", "locale/std::wstring_convert::to_bytes", "locale/std::wstring_convert::converted", "locale/std::wstring_convert::state"] helpviewer_keywords: ["stdext::cvt [C++], wstring_convert", "std::wstring_convert [C++], byte_string", "std::wstring_convert [C++], wide_string", "std::wstring_convert [C++], state_type", "std::wstring_convert [C++], int_type", "std::wstring_convert [C++], from_bytes", "std::wstring_convert [C++], to_bytes", "std::wstring_convert [C++], converted", "std::wstring_convert [C++], state"] -ms.assetid: e34f5b65-d572-4bdc-ac69-20778712e376 --- # wstring_convert Class @@ -161,8 +160,6 @@ state_type state() const; The [conversion state](../standard-library/wstring-convert-class.md) object that represents the state of the conversion. -### Remarks - ## wstring_convert::state_type A type that represents the conversion state.