Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TRangeSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Contains
(
ElementValueOrConstRef Element |
Checks whether this set contains the specified element. | Math/RangeSet.h | |
| Checks whether this set contains the specified range. | Math/RangeSet.h |
Contains(ElementValueOrConstRef)
Description
Checks whether this set contains the specified element.
| Name | Contains |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/RangeSet.h |
| Include Path | #include "Math/RangeSet.h" |
bool Contains
(
ElementValueOrConstRef Element
) const
true if the element is in the set, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Element | The element to check. |
Contains(const RangeType &)
Description
Checks whether this set contains the specified range.
| Name | Contains |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/RangeSet.h |
| Include Path | #include "Math/RangeSet.h" |
bool Contains
(
const RangeType & Range
) const
true if the set contains the range, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Range | The range to check. |