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
@@ -62,7 +62,7 @@ If you attempt to use a **Vector** type in a public return value or parameter, c
62
62
|[Vector::GetMany](#getmany)|Retrieves a sequence of items from the current Vector, starting at the specified index.|
63
63
|[Vector::GetView](#getview)|Returns a read-only view of a Vector; that is, a [Platform::Collections::VectorView](../cppcx/platform-collections-vectorview-class.md).|
64
64
|[Vector::IndexOf](#indexof)|Searches for the specified item in the current Vector, and if found, returns the index of the item.|
65
-
|[Vector::InsertAt](#insertat)|Inserts the specified item into the current Vector after the element identified by the specified index.|
65
+
|[Vector::InsertAt](#insertat)|Inserts the specified item into the current Vector at the element identified by the specified index.|
66
66
|[Vector::ReplaceAll](#replaceall)|Deletes the elements in the current Vector and then inserts the elements from the specified array.|
67
67
|[Vector::RemoveAt](#removeat)|Deletes the element identified by the specified index from the current Vector.|
68
68
|[Vector::RemoveAtEnd](#removeatend)|Deletes the element at the end of the current Vector.|
@@ -222,7 +222,7 @@ IndexOf uses std::find_if to find the item. Custom element types should therefor
0 commit comments