MyConstIterator
typedef TestIterator<ConstEntry, const Class, MyConstIterator, ReferenceConstIterator>
MyConstIterator myIt = fMyMap.Begin();
MyConstIterator myIt = fMyMap.Find(key);
MyConstIterator myIt = fMyMap.FindClose(key, less);
CPPUNIT_ASSERT(fCompare((--MyConstIterator(myIt))->Key(), key) < 0);
MyConstIterator nextMyIt(myIt);
MyConstIterator prevMyIt(myIt);
MyConstIterator myIt = fMyMap.Begin();
typedef TestIterator<const Value, const Class, MyConstIterator, ReferenceConstIterator>
MyConstIterator myIt = fMySet.Begin();
MyConstIterator myIt = fMySet.Find(value);
MyConstIterator myIt = fMySet.FindClose(value, less);
CPPUNIT_ASSERT(fCompare(*--MyConstIterator(myIt), value) < 0);
MyConstIterator nextMyIt(myIt);
MyConstIterator prevMyIt(myIt);
MyConstIterator myIt = fMySet.Begin();
typedef TestIterator<const Value, const TestVector<Value>, MyConstIterator, ReferenceConstIterator>
MyConstIterator myIt = fMyVector.Find(value);
MyConstIterator myIt = fMyVector.Find(value, _start.fMyIterator);