1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0026469: Methods Seek(), ChangeSeek() are missing in class NCollection_IndexedDataMap

I. New features:
1.1. class NCollection_IndexedDataMap
 - method:
 const TheItemType* Seek(const TheKeyType& theKey1) const
 has been added.
 The method Seek returns pointer to Item by Key.
 Returns NULL if Key was not found.

 - method:
 TheItemType* ChangeSeek (const TheKeyType& theKey1)
 has been added.
 The method ChangeSeek returns modifiable pointer to Item by Key.
 Returns NULL if Key was not found.

II. Changes:
 No changes.

III. Modified entities:
 packages:
 NCollection
This commit is contained in:
pkv 2015-07-22 14:11:36 +03:00 committed by bugmaster
parent a447178e3f
commit 031d5ab77c

View File

@ -531,6 +531,33 @@ class NCollection_IndexedDataMap : public NCollection_BaseMap
return pNode1->ChangeValue(); return pNode1->ChangeValue();
} }
//! Seek returns pointer to Item by Key. Returns
//! NULL if Key was not found.
const TheItemType* Seek(const TheKeyType& theKey1) const
{
return const_cast< NCollection_IndexedDataMap * >( this )->ChangeSeek(theKey1);
//NCollection_IndexedDataMap *pMap=(NCollection_IndexedDataMap *)this;
//return pMap->ChangeSeek(theKey1);
}
//! ChangeSeek returns modifiable pointer to Item by Key. Returns
//! NULL if Key was not found.
TheItemType* ChangeSeek (const TheKeyType& theKey1)
{
if (!IsEmpty())
{
IndexedDataMapNode * pNode1 =
(IndexedDataMapNode *) myData1[Hasher::HashCode(theKey1,NbBuckets())];
while (pNode1)
{
if (Hasher::IsEqual (pNode1->Key1(), theKey1))
return &pNode1->ChangeValue();
pNode1 = (IndexedDataMapNode*) pNode1->Next();
}
}
return 0L;
}
//! Find value for key with copying. //! Find value for key with copying.
//! @return true if key was found //! @return true if key was found
Standard_Boolean FindFromKey (const TheKeyType& theKey1, Standard_Boolean FindFromKey (const TheKeyType& theKey1,