Reputation: 1
I have a class that adds/removes items to an iterator, is it possible to access those items of that same list from a separate class?
Upvotes: 0
Views: 42
Reputation: 160191
Sure, as long as you have a reference to the list, or references to the individual items of interest.
Upvotes: 1