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
The first//last functions for dictionary, list, ordering, and table should be made const. To do so, the first and last functions should return an iterator that maintains the state of the iteration.
For example:
for(iterator entry = dict.first(); entry.valid(); entry.next()) {...}
iter can hold a key and value pair of type T.
The text was updated successfully, but these errors were encountered:
The first//last functions for dictionary, list, ordering, and table should be made const. To do so, the first and last functions should return an iterator that maintains the state of the iteration.
For example:
for(iterator entry = dict.first(); entry.valid(); entry.next()) {...}
iter can hold a key and value pair of type T.
The text was updated successfully, but these errors were encountered: