Represents a read-only view into a map, which is a collection of key-value pairs.
template < typename K, typename V, typename C = ::std::less<K> > ref class MapView sealed;
MapView is the concrete C++ implementation of the Windows::Foundation::IMapView interface that is passed across the application binary interface (ABI). For more information, see Collections (C++/CX).
Public Constructors
|
Name |
Description |
|---|---|
|
Initializes a new instance of the MapView class. |
Public Methods
|
Name |
Description |
|---|---|
|
Returns an iterator that is initialized to the first element in the map view. |
|
|
Determines whether the current MapView contains the specified key. |
|
|
Retrieves the element at the specified key in the current MapView object. |
|
|
Returns the number of elements in the current MapView object. |
|
|
Splits an original MapView object into two MapView objects. |