You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The member operator copies *right* to the object, then returns **`*this`**. You use it to replace the stored BCL handle with a copy of the stored BCL handle in *right*.
571
+
The member operator copies *`right`* to the object, then returns **`*this`**. You use it to replace the stored BCL handle with a copy of the stored BCL handle in *`right`*.
572
572
573
573
### Example
574
574
@@ -668,7 +668,7 @@ size_type size();
668
668
669
669
### Remarks
670
670
671
-
The member function returns the length of the controlled sequence. It is not defined in a specialization for `IEnumerable` or `IEnumerable<Value>`.
671
+
The member function returns the length of the controlled sequence. It isn't defined in a specialization for `IEnumerable` or `IEnumerable<Value>`.
A template class that wraps a pair of iterators that are used to implement several Base Class Library (BCL) interfaces. You use the range_adapter to manipulate an STL/CLR range as if it were a BCL collection.
945
+
A template class that wraps a pair of iterators that are used to implement several Base Class Library (BCL) interfaces. You use the range_adapter to manipulate an STL/CLR range as if it was a BCL collection.
946
946
947
947
### Syntax
948
948
@@ -959,7 +959,7 @@ template<typename Iter>
959
959
960
960
#### Parameters
961
961
962
-
*Iter*<br/>
962
+
*`Iter`*\
963
963
The type associated with the wrapped iterators.
964
964
965
965
### Members
@@ -978,7 +978,7 @@ The type associated with the wrapped iterators.
978
978
|---------------|-----------------|
979
979
|<xref:System.Collections.IEnumerable>|Iterates through elements in the collection.|
980
980
|<xref:System.Collections.ICollection>|Maintains a group of elements.|
981
-
|<xref:System.Collections.Generic.IEnumerable%601>|Iterates through typed elements in the collection..|
981
+
|<xref:System.Collections.Generic.IEnumerable%601>|Iterates through typed elements in the collection.|
982
982
|<xref:System.Collections.Generic.ICollection%601>|Maintains a group of typed elements.|
The member operator copies *right* to the object, then returns **`*this`**. You use it to replace the stored iterator pair with a copy of the stored iterator pair in *right*.
1005
+
The member operator copies *`right`* to the object, then returns **`*this`**. You use it to replace the stored iterator pair with a copy of the stored iterator pair in *`right`*.
1006
1006
1007
1007
### Example
1008
1008
@@ -1057,13 +1057,13 @@ range_adapter(Iter first, Iter last);
1057
1057
1058
1058
#### Parameters
1059
1059
1060
-
*first*<br/>
1060
+
*`first`*\
1061
1061
First iterator to wrap.
1062
1062
1063
-
*last*<br/>
1063
+
*`last`*\
1064
1064
Second iterator to wrap.
1065
1065
1066
-
*right*<br/>
1066
+
*`right`*\
1067
1067
Object to copy.
1068
1068
1069
1069
### Remarks
@@ -1078,7 +1078,7 @@ The constructor:
1078
1078
1079
1079
`range_adapter(range_adapter<Iter>% right);`
1080
1080
1081
-
initializes the stored iterator pair by copying the pair stored in *right*.
1081
+
initializes the stored iterator pair by copying the pair stored in *`right`*.
1082
1082
1083
1083
The constructor:
1084
1084
@@ -1090,7 +1090,7 @@ The constructor:
1090
1090
1091
1091
`range_adapter(Iter^ first, last);`
1092
1092
1093
-
initializes the stored iterator pair with *first* and *last*.
1093
+
initializes the stored iterator pair with *`first`* and *`last`*.
0 commit comments