Open CASCADE Technology 7.8.2.dev
|
#include <NCollection_Map.hxx>
Data Structures | |
class | Iterator |
Implementation of the Iterator interface. More... | |
class | MapNode |
Adaptation of the TListNode to the map notations. More... | |
Public Types | |
typedef TheKeyType | key_type |
STL-compliant typedef for key type. | |
typedef Hasher | hasher |
typedef NCollection_StlIterator< std::forward_iterator_tag, Iterator, TheKeyType, true > | const_iterator |
Shorthand for a constant iterator type. | |
Public Member Functions | |
const_iterator | cbegin () const |
Returns a const iterator pointing to the first element in the map. | |
const_iterator | cend () const |
Returns a const iterator referring to the past-the-end element in the map. | |
NCollection_Map () | |
Empty constructor. | |
NCollection_Map (const Standard_Integer theNbBuckets, const Handle< NCollection_BaseAllocator > &theAllocator=0L) | |
Constructor. | |
NCollection_Map (const NCollection_Map &theOther) | |
Copy constructor. | |
NCollection_Map (NCollection_Map &&theOther) noexcept | |
Move constructor. | |
void | Exchange (NCollection_Map &theOther) |
Exchange the content of two maps without re-allocations. Notice that allocators will be swapped as well! | |
NCollection_Map & | Assign (const NCollection_Map &theOther) |
Assign. This method does not change the internal allocator. | |
NCollection_Map & | operator= (const NCollection_Map &theOther) |
Assign operator. | |
NCollection_Map & | operator= (NCollection_Map &&theOther) noexcept |
Move operator. | |
void | ReSize (const Standard_Integer N) |
ReSize. | |
Standard_Boolean | Add (const TheKeyType &theKey) |
Add. | |
Standard_Boolean | Add (TheKeyType &&theKey) |
Add. | |
const TheKeyType & | Added (const TheKeyType &theKey) |
Added: add a new key if not yet in the map, and return reference to either newly added or previously existing object. | |
const TheKeyType & | Added (TheKeyType &&theKey) |
Added: add a new key if not yet in the map, and return reference to either newly added or previously existing object. | |
Standard_Boolean | Contains (const TheKeyType &theKey) const |
Contains. | |
Standard_Boolean | Remove (const TheKeyType &K) |
Remove. | |
void | Clear (const Standard_Boolean doReleaseMemory=Standard_False) |
Clear data. If doReleaseMemory is false then the table of buckets is not released and will be reused. | |
void | Clear (const Handle< NCollection_BaseAllocator > &theAllocator) |
Clear data and reset allocator. | |
virtual | ~NCollection_Map (void) |
Destructor. | |
Standard_Integer | Size (void) const |
Size. | |
Public Member Functions inherited from NCollection_BaseMap | |
Standard_Integer | NbBuckets () const |
NbBuckets. | |
Standard_Integer | Extent () const |
Extent. | |
Standard_Boolean | IsEmpty () const |
IsEmpty. | |
void | Statistics (Standard_OStream &S) const |
Statistics. | |
const Handle< NCollection_BaseAllocator > & | Allocator () const |
Returns attached allocator. | |
Boolean operations with maps as sets of keys | |
Hasher | myHasher |
Standard_Boolean | IsEqual (const NCollection_Map &theOther) const |
Standard_Boolean | Contains (const NCollection_Map &theOther) const |
void | Union (const NCollection_Map &theLeft, const NCollection_Map &theRight) |
Sets this Map to be the result of union (aka addition, fuse, merge, boolean OR) operation between two given Maps The new Map contains the values that are contained either in the first map or in the second map or in both. All previous content of this Map is cleared. This map (result of the boolean operation) can also be passed as one of operands. | |
Standard_Boolean | Unite (const NCollection_Map &theOther) |
Apply to this Map the boolean operation union (aka addition, fuse, merge, boolean OR) with another (given) Map. The result contains the values that were previously contained in this map or contained in the given (operand) map. This algorithm is similar to method Union(). Returns True if contents of this map is changed. | |
Standard_Boolean | HasIntersection (const NCollection_Map &theMap) const |
Returns true if this and theMap have common elements. | |
void | Intersection (const NCollection_Map &theLeft, const NCollection_Map &theRight) |
Sets this Map to be the result of intersection (aka multiplication, common, boolean AND) operation between two given Maps. The new Map contains only the values that are contained in both map operands. All previous content of this Map is cleared. This same map (result of the boolean operation) can also be used as one of operands. | |
Standard_Boolean | Intersect (const NCollection_Map &theOther) |
Apply to this Map the intersection operation (aka multiplication, common, boolean AND) with another (given) Map. The result contains only the values that are contained in both this and the given maps. This algorithm is similar to method Intersection(). Returns True if contents of this map is changed. | |
void | Subtraction (const NCollection_Map &theLeft, const NCollection_Map &theRight) |
Sets this Map to be the result of subtraction (aka set-theoretic difference, relative complement, exclude, cut, boolean NOT) operation between two given Maps. The new Map contains only the values that are contained in the first map operands and not contained in the second one. All previous content of this Map is cleared. | |
Standard_Boolean | Subtract (const NCollection_Map &theOther) |
Apply to this Map the subtraction (aka set-theoretic difference, relative complement, exclude, cut, boolean NOT) operation with another (given) Map. The result contains only the values that were previously contained in this map and not contained in this map. This algorithm is similar to method Subtract() with two operands. Returns True if contents of this map is changed. | |
void | Difference (const NCollection_Map &theLeft, const NCollection_Map &theRight) |
Sets this Map to be the result of symmetric difference (aka exclusive disjunction, boolean XOR) operation between two given Maps. The new Map contains the values that are contained only in the first or the second operand maps but not in both. All previous content of this Map is cleared. This map (result of the boolean operation) can also be used as one of operands. | |
Standard_Boolean | Differ (const NCollection_Map &theOther) |
Apply to this Map the symmetric difference (aka exclusive disjunction, boolean XOR) operation with another (given) Map. The result contains the values that are contained only in this or the operand map, but not in both. This algorithm is similar to method Difference(). Returns True if contents of this map is changed. | |
Standard_Boolean | lookup (const TheKeyType &theKey, MapNode *&theNode, size_t &theHash) const |
Lookup for particular key in map. | |
Standard_Boolean | lookup (const TheKeyType &theKey, MapNode *&theNode) const |
Lookup for particular key in map. | |
bool | IsEqual (const TheKeyType &theKey1, const TheKeyType &theKey2) const |
size_t | HashCode (const TheKeyType &theKey, const int theUpperBound) const |
Purpose: Single hashed Map. This Map is used to store and retrieve keys in linear time.
The ::Iterator class can be used to explore the content of the map. It is not wise to iterate and modify a map in parallel.
To compute the hashcode of the key the function HashCode must be defined in the global namespace
To compare two keys the function IsEqual must be defined in the global namespace.
The performance of a Map is conditioned by its number of buckets that should be kept greater to the number of keys. This map has an automatic management of the number of buckets. It is resized when the number of Keys becomes greater than the number of buckets.
If you have a fair idea of the number of objects you can save on automatic resizing by giving a number of buckets at creation or using the ReSize method. This should be consider only for crucial optimisation issues.
NCollection_StlIterator<std::forward_iterator_tag, Iterator, TheKeyType, true> NCollection_Map< TheKeyType, Hasher >::const_iterator |
Shorthand for a constant iterator type.
Hasher NCollection_Map< TheKeyType, Hasher >::hasher |
TheKeyType NCollection_Map< TheKeyType, Hasher >::key_type |
STL-compliant typedef for key type.
|
inline |
Empty constructor.
|
inlineexplicit |
Constructor.
|
inline |
Copy constructor.
|
inlinenoexcept |
Move constructor.
|
inlinevirtual |
Destructor.
|
inline |
Add.
|
inline |
Add.
|
inline |
Added: add a new key if not yet in the map, and return reference to either newly added or previously existing object.
|
inline |
Added: add a new key if not yet in the map, and return reference to either newly added or previously existing object.
|
inline |
Assign. This method does not change the internal allocator.
|
inline |
Returns a const iterator pointing to the first element in the map.
|
inline |
Returns a const iterator referring to the past-the-end element in the map.
|
inline |
Clear data and reset allocator.
|
inline |
Clear data. If doReleaseMemory is false then the table of buckets is not released and will be reused.
|
inline |
|
inline |
Contains.
|
inline |
Apply to this Map the symmetric difference (aka exclusive disjunction, boolean XOR) operation with another (given) Map. The result contains the values that are contained only in this or the operand map, but not in both. This algorithm is similar to method Difference(). Returns True if contents of this map is changed.
|
inline |
Sets this Map to be the result of symmetric difference (aka exclusive disjunction, boolean XOR) operation between two given Maps. The new Map contains the values that are contained only in the first or the second operand maps but not in both. All previous content of this Map is cleared. This map (result of the boolean operation) can also be used as one of operands.
|
inline |
Exchange the content of two maps without re-allocations. Notice that allocators will be swapped as well!
|
inlineprotected |
|
inline |
Returns true if this and theMap have common elements.
|
inline |
Apply to this Map the intersection operation (aka multiplication, common, boolean AND) with another (given) Map. The result contains only the values that are contained in both this and the given maps. This algorithm is similar to method Intersection(). Returns True if contents of this map is changed.
|
inline |
Sets this Map to be the result of intersection (aka multiplication, common, boolean AND) operation between two given Maps. The new Map contains only the values that are contained in both map operands. All previous content of this Map is cleared. This same map (result of the boolean operation) can also be used as one of operands.
|
inline |
|
inlineprotected |
|
inlineprotected |
Lookup for particular key in map.
[in] | theKey | key to compute hash |
[out] | theNode | the detected node with equal key. Can be null. |
|
inlineprotected |
Lookup for particular key in map.
[in] | theKey | key to compute hash |
[out] | theNode | the detected node with equal key. Can be null. |
[out] | theHash | computed bounded hash code for current key. |
|
inline |
Assign operator.
|
inlinenoexcept |
Move operator.
|
inline |
Remove.
|
inline |
ReSize.
|
inline |
Size.
|
inline |
Apply to this Map the subtraction (aka set-theoretic difference, relative complement, exclude, cut, boolean NOT) operation with another (given) Map. The result contains only the values that were previously contained in this map and not contained in this map. This algorithm is similar to method Subtract() with two operands. Returns True if contents of this map is changed.
|
inline |
Sets this Map to be the result of subtraction (aka set-theoretic difference, relative complement, exclude, cut, boolean NOT) operation between two given Maps. The new Map contains only the values that are contained in the first map operands and not contained in the second one. All previous content of this Map is cleared.
|
inline |
Sets this Map to be the result of union (aka addition, fuse, merge, boolean OR) operation between two given Maps The new Map contains the values that are contained either in the first map or in the second map or in both. All previous content of this Map is cleared. This map (result of the boolean operation) can also be passed as one of operands.
|
inline |
Apply to this Map the boolean operation union (aka addition, fuse, merge, boolean OR) with another (given) Map. The result contains the values that were previously contained in this map or contained in the given (operand) map. This algorithm is similar to method Union(). Returns True if contents of this map is changed.
|
protected |