473,799 Members | 3,159 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

multiple iterators on non-generic class - correct 'idiom'?

Hi

Another query relating to iterators.

The following seems to work but it's different from the examples I can
find on MSDN ...

I'm trying to retrofit iterators into a non-generic class - here's an
attempt to make a forward and reverse one, with forward being the
default ...

One thing I can't quite figure out is why my foreach works when
specifying the 'named' enumerators?! Normally IEnumerator needs to be
returned but, below, IEnumerable is returned from the yield-versions -
foreach still works. I also noticed that it doesn't seem to matter
whether the iterator function returns IEnumerable or IEnumerator.
What's going on?

class SortedHashtable : IEnumerable
{
...

public IEnumerator GetEnumerator()
{
return GetForwardOrder Enumerator().Ge tEnumerator();
}

public IEnumerable GetForwardOrder Enumerator()
{
ArrayList sortedKeys = new ArrayList(hasht able.Keys);
sortedKeys.Sort ();

foreach (object o in sortedKeys)
{
yield return new DictionaryEntry (o, hashtable[o]);
}
}

public IEnumerable GetReverseOrder Enumerator()
{
ArrayList sortedKeys = new ArrayList(hasht able.Keys);
sortedKeys.Sort ();
sortedKeys.Reve rse();

foreach (object o in sortedKeys)
{
yield return new DictionaryEntry (o, hashtable[o]);
}
}
}
Cheers

Emma

Aug 10 '06 #1
0 1070

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1493
by: Alex Martelli | last post by:
Interested parties (essentially, people who write user-coded iterator, or are intense users of iterators as "stream of data", of standard library module itertools, etc) are welcome to read, and possibly comment on, a new PEP on copyable iterators, see: http://www.python.org/peps/pep-0323.html The PEP is currently at revision 1.2, having already been amended and vastly extended as a consequence of discussions on these issues on...
2
2383
by: Ney André de Mello Zunino | last post by:
Hello. A non-modifying algorithm I implemented uses two associative containers from STL: set and map. The elements on those containers are supposed to refer to actual elements which lie on another, bigger container. I had the definition of my auxiliary containers based on pointers, but considered using iterators instead. I know iterators might become invalid upon certain operations, but as I said, the algorithm is non-modifying. This...
3
2476
by: Old Wolf | last post by:
Hi all. G++ fails to compile the following: #include <string> int main() { std::string foo("abc=123"); std::string::const_iterator delimiter = std::find(foo.begin(), foo.end(), '=');
0
2255
by: gary_dr | last post by:
What's so special about istream_iterator that prevents me from determining the distance between two of them. In the code below, search() does return a foundAt iterator that points to the location in question, but distance() still always returns zero. However reading a chunk of file into a vector and searching the vector produces an iterator that distance() will measure properly. Evidently , it is not possible to measure the distance ...
4
2320
by: fastback66 | last post by:
Evidently per the C++ standard, it is not possible to measure the distance between two stream iterators, because two non-end-of-stream iterators are equal when they are constructed from the same stream. I still don't quite understand why that fact is true. But... I wish to find the first occurance of some sequence in an existing stream. For the moment this stream is a file on disk, but later may be a stream from another process. Anyway,...
7
6669
by: tea-jay | last post by:
hello every body our teacher asks us to write this assiment it has 2 question i did write the first one but the other was really complicated 2 me coz our teacher doesn't know how to explain this so plz plz try to solve this problem
18
2123
by: desktop | last post by:
1) I have this code: std::list<intmylist; mylist.push_back(1); mylist.push_back(2); mylist.push_back(3); mylist.push_back(4);
6
1480
by: Michael Coley | last post by:
Hi, I've wrote this function which should add a comma for every 3 digits in a number (so that it looks something like 5,000). This is my function: std::string formatNumber(int number) { // Convert the int to a string. std::string numString = boost::lexical_cast<std::string>(number); std::string::const_reverse_iterator i = numString.rbegin(), end =
5
1745
by: TP | last post by:
Hi everybody, Several means to escape a nested loop are given here: http://stackoverflow.com/questions/189645/how-to-break-out-of-multiple-loops-in-python According to this page, the best way is to modify the loop by affecting the variables that are tested in the loops. Otherwise, use exception: "If, for some reason, the terminating conditions can't be worked out,
3
2756
by: zr | last post by:
Hi, Does usage of checked iterators and checked containers make code more secure? If so, can that code considered to be reasonably secure?
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10247
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7561
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6803
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5459
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5583
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4135
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3751
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2935
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.