Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TRange
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TRange () |
Default constructor (no initialization). | Math/Range.h | |
TRange
(
ElementValueOrConstRef A |
Create a range with a single element.The created range is of the form [A, A]. | Math/Range.h | |
TRange
(
ElementValueOrConstRef A, |
Create and initializes a new range with the given lower and upper bounds. | Math/Range.h | |
TRange
(
const BoundsType& InLowerBound, |
Create and initializes a new range with the given lower and upper bounds. | Math/Range.h |
TRange()
Description
Default constructor (no initialization).
| Name | TRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
TRange()
TRange(ElementValueOrConstRef)
Description
Create a range with a single element.
The created range is of the form [A, A].
| Name | TRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
TRange
(
ElementValueOrConstRef A
)
Parameters
| Name | Remarks |
|---|---|
| A | The element in the range. |
TRange(ElementValueOrConstRef, ElementValueOrConstRef)
Description
Create and initializes a new range with the given lower and upper bounds.
The created range is of the form [A, B).
| Name | TRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
TRange
(
ElementValueOrConstRef A,
ElementValueOrConstRef B
)
Parameters
| Name | Remarks |
|---|---|
| A | The range's lower bound value (inclusive). |
| B | The range's upper bound value (exclusive). |
TRange(const BoundsType &, const BoundsType &)
Description
Create and initializes a new range with the given lower and upper bounds.
| Name | TRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
TRange
(
const BoundsType & InLowerBound,
const BoundsType & InUpperBound
)
Parameters
| Name | Remarks |
|---|---|
| InLowerBound | The range's lower bound. |
| InUpperBound | The range's upper bound. |