mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0029492: Coding Rules. NCollection_IndexedDataMap - add missing documentation to method ::Add()
This commit is contained in:
parent
0b35e9d037
commit
94807a7d97
@ -214,9 +214,10 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Bind binds Item to Key in map. Returns Standard_True if Key was not
|
//! Bind binds Item to Key in map.
|
||||||
//! exist in the map. If the Key was already bound, the Item will be rebinded
|
//! @param theKey key to add/update
|
||||||
//! and Standard_False will be returned.
|
//! @param theItem new item; overrides value previously bound to the key, if any
|
||||||
|
//! @return Standard_True if Key was not bound already
|
||||||
Standard_Boolean Bind (const TheKeyType& theKey, const TheItemType& theItem)
|
Standard_Boolean Bind (const TheKeyType& theKey, const TheItemType& theItem)
|
||||||
{
|
{
|
||||||
if (Resizable())
|
if (Resizable())
|
||||||
|
@ -241,7 +241,10 @@ private:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Add
|
//! Returns the Index of already bound Key or appends new Key with specified Item value.
|
||||||
|
//! @param theKey1 Key to search (and to bind, if it was not bound already)
|
||||||
|
//! @param theItem Item value to set for newly bound Key; ignored if Key was already bound
|
||||||
|
//! @return index of Key
|
||||||
Standard_Integer Add (const TheKeyType& theKey1, const TheItemType& theItem)
|
Standard_Integer Add (const TheKeyType& theKey1, const TheItemType& theItem)
|
||||||
{
|
{
|
||||||
if (Resizable())
|
if (Resizable())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user