Lines Matching refs:map
44 <p>You can create enumerators for the keys of the map, its values, and its key-value pairs.</p>
47 map's content. Such an iterator is not affected by changes done to the map after creation of
50 <p>On the contrary, an enumerator which is <em>non-isolated</em> works directly on the map data.
51 …This is less expensive than an <em>isolated</em> enumerator, but means that changes to the map whi…
63 /** creates a enumerator for the keys of the map
66 controls whether the newly create enumerator should be isolated from the map.
74 /** creates a enumerator for the values of the map
77 controls whether the newly create enumerator should be isolated from the map.
85 /** creates a enumerator for the key-value pairs of the map
88 holding the key-value-pairs which are part of the map.</p>
91 controls whether the newly create enumerator should be isolated from the map.