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