TColStd_PackedMapOfInteger Class Reference
#include <TColStd_PackedMapOfInteger.hxx>
Detailed Description
Optimized Map of integer values. Each block of 32 integers is stored in 8 bytes in memory.
Constructor & Destructor Documentation
| TColStd_PackedMapOfInteger::TColStd_PackedMapOfInteger |
( |
const Standard_Integer |
NbBuckets = 1 |
) |
[inline] |
| TColStd_PackedMapOfInteger::~TColStd_PackedMapOfInteger |
( |
|
) |
[inline] |
Member Function Documentation
| void TColStd_PackedMapOfInteger::Clear |
( |
|
) |
|
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.
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 contents of this Map is cleared. This map (result of the boolean operation) can also be used as one of operands.
Query the maximal contained key value.
Query the minimal contained key value.
Returns True if this map has common items with the given one.
| Standard_Integer TColStd_PackedMapOfInteger::InternalExtent |
( |
|
) |
const [inline, protected] |
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.
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 contents of this Map is cleared. This same map (result of the boolean operation) can also be used as one of operands.
The order of operands makes no difference; the method minimizes internally the number of iterations using the smallest map for the loop.
Returns True if this map is equal to the given one, i.e. they contain the same sets of elements
Returns True if this map is subset of the given one, i.e. all elements contained in this map is contained also in the operand map. if this map is empty that this method returns true for any operand map.
| void TColStd_PackedMapOfInteger::operator delete |
( |
void * |
anAddress |
) |
[inline] |
| void* TColStd_PackedMapOfInteger::operator new |
( |
size_t |
size |
) |
[inline] |
Overloaded operator version of Differ().
Overloaded operator version of Unite().
| void TColStd_PackedMapOfInteger::Statistics |
( |
Standard_OStream & |
S |
) |
const [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.
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 contents of this Map is cleared. This map (result of the boolean operation) can also be used as the first operand.
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 contents of this Map is cleared. This map (result of the boolean operation) can also be passed as one of operands.
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.
The documentation for this class was generated from the following file: