Skip to content

Commit a54b65c

Browse files
author
mikeblome
committed
fixed links and TOC
1 parent bc6bf0a commit a54b65c

File tree

99 files changed

+92
-4476
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+92
-4476
lines changed

docs/cppcx/agile-get-method.md

Lines changed: 0 additions & 49 deletions
This file was deleted.

docs/cppcx/agile-getaddressof-method.md

Lines changed: 0 additions & 54 deletions
This file was deleted.

docs/cppcx/agile-getaddressofforinout-method.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

docs/cppcx/agile-release-method.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

docs/cppcx/array-get-method.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

docs/cppcx/array-value-property.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

docs/cppcx/box-value-property.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

docs/cppcx/collections-c-cx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void FindButton(UIElementCollection^ col)
9898
## Collection types
9999
Collections fall into four categories: modifiable versions and read-only versions of sequence collections and associative collections. In addition, [!INCLUDE[cppwrt_short](../cppcx/includes/cppwrt-short-md.md)] enhances collections by providing three iterator classes that simplify the accessing of collections.
100100

101-
Elements of a modifiable collection can be changed, but elements of a read-only collection, which is known as a *view*, can only be read. Elements of a [Platform::Collections::Vector](../cppcx/platform-collections-vector-class.md) or[Platform::Collections::VectorView](../cppcx/platform-collections-vectorview-class.md) collection can be accessed by using an iterator or the collection's [Vector::GetAt Method](../cppcx/vector-getat-method.md) and an index. Elements of an associative collection can be accessed by using the collection's [Map::Lookup Method](../cppcx/map-lookup-method.md) and a key.
101+
Elements of a modifiable collection can be changed, but elements of a read-only collection, which is known as a *view*, can only be read. Elements of a [Platform::Collections::Vector](../cppcx/platform-collections-vector-class.md) or[Platform::Collections::VectorView](../cppcx/platform-collections-vectorview-class.md) collection can be accessed by using an iterator or the collection's [Vector::GetAt Method](../cppcx/vector-class.md#getat) and an index. Elements of an associative collection can be accessed by using the collection's [Map::Lookup Method](../cppcx/map-class.md#lookup) and a key.
102102

103103
[Platform::Collections::Map Class](../cppcx/platform-collections-map-class.md)
104104
A modifiable, associative collection. Map elements are key-value pairs. Looking up a key to retrieve its associated value, and iterating through all key-value pairs, are both supported.
@@ -109,7 +109,7 @@ void FindButton(UIElementCollection^ col)
109109
A read-only version of a `Map`.
110110

111111
[Platform::Collections::Vector Class](../cppcx/platform-collections-vector-class.md)
112-
A modifiable sequence collection. `Vector<T>` supports constant-time random access and amortized-constant-time [Append](../cppcx/vector-append-method.md) operations..
112+
A modifiable sequence collection. `Vector<T>` supports constant-time random access and amortized-constant-time [Append](../cppcx/vector-class.md#append) operations..
113113

114114
[Platform::Collections::VectorView Class](../cppcx/platform-collections-vectorview-class.md)
115115
A read-only version of a `Vector`.

0 commit comments

Comments
 (0)