An iterator for traversing the entries of a QDictionary<K, V>. This iterator allows for traversing the key-value pairs stored within the dictionary in a sequential manner. More...
Public Member Functions | |
bool | MoveNext () |
Advances the iterator to the next element of the QDictionary<K, V>, which can be retrieved with QDictionaryIterator<K, V>.Current. More... | |
Properties | |
readonly KeyValuePair< K, V > | Current [get] |
Gets the current key-value pair in the QDictionary<K, V> based in the iterator state. More... | |
readonly ref readonly K | Key [get] |
Returns a readonly ref to the current key based on the iterator current element. More... | |
readonly K * | KeyPtrUnsafe [get, set] |
Returns a pointer to the current key based on the iterator current element. More... | |
readonly ref readonly V | Value [get] |
Returns a readonly ref to the current value based on the iterator current element. More... | |
readonly V * | ValuePtrUnsafe [get, set] |
Returns a pointer to the current value based on the iterator current element. More... | |
An iterator for traversing the entries of a QDictionary<K, V>. This iterator allows for traversing the key-value pairs stored within the dictionary in a sequential manner.
K | : | unmanaged | |
V | : | unmanaged |
|
inline |
Advances the iterator to the next element of the QDictionary<K, V>, which can be retrieved with QDictionaryIterator<K, V>.Current.
true
if the iterator is still in the boundaries of the QDictionary<K, V>.
|
get |
Gets the current key-value pair in the QDictionary<K, V> based in the iterator state.
|
get |
Returns a readonly ref to the current key based on the iterator current element.
|
get |
Returns a readonly ref to the current value based on the iterator current element.
|
getset |
Returns a pointer to the current key based on the iterator current element.
|
getset |
Returns a pointer to the current value based on the iterator current element.