#include <TColStd_PackedMapOfInteger.hxx>
Inheritance diagram for TColStd_PackedMapOfInteger:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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. |
|
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. |
|
Reimplemented from TCollection_BasicMap. |
|
Query the maximal contained key value. |
|
Query the minimal contained key value. |
|
Returns True if this map has common items with the given one. |
|
|
|
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. |
|
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. |
|
Reimplemented from TCollection_BasicMap. |
|
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. |
|
Reimplemented from TCollection_BasicMap. |
|
Overloaded operator version of Intersect(). |
|
Reimplemented from TCollection_BasicMap. |
|
Reimplemented from TCollection_BasicMap. |
|
Overloaded operator version of Subtract(). |
|
Overloaded operator version of IsSubset(). |
|
|
|
Overloaded operator version of IsEqual(). |
|
Overloaded operator version of Differ(). |
|
Overloaded operator version of Unite(). |
|
|
|
|
|
Reimplemented from TCollection_BasicMap. |
|
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. |
|
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. |
|
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. |
|
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. |
|
|