FindClose
Iterator FindClose(const Key& key, bool less);
Iterator FindClose(const Key &key, bool less);
ConstIterator FindClose(const Key &key, bool less) const;
Iterator FindClose(const Value &value, bool less);
ConstIterator FindClose(const Value &value, bool less) const;
DeviceMap::Iterator it = fDevices->FindClose(*cookie, false);
DiskSystemMap::Iterator it = fDiskSystems->FindClose(*cookie, false);
MyIterator myIt = fMyMap.FindClose(key, less);
MyConstIterator myIt = fMyMap.FindClose(key, less);
Iterator it = v.FindClose(key, true);
ConstIterator cit = cv.FindClose(key, true);
it = v.FindClose(key, false);
cit = cv.FindClose(key, false);
Iterator it = v.FindClose(key, true);
ConstIterator cit = cv.FindClose(key, true);
it = v.FindClose(key, false);
cit = cv.FindClose(key, false);
MyIterator myIt = fMySet.FindClose(value, less);
MyConstIterator myIt = fMySet.FindClose(value, less);
Iterator it = v.FindClose(value, true);
ConstIterator cit = cv.FindClose(value, true);
it = v.FindClose(value, false);
cit = cv.FindClose(value, false);
Iterator it = v.FindClose(value, true);
ConstIterator cit = cv.FindClose(value, true);
it = v.FindClose(value, false);
cit = cv.FindClose(value, false);