Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TRange
Description
Check whether this range adjoins to another.
Two ranges are adjoint if they are next to each other without overlapping, i.e. [A, B) and [B, C) or [A, B] and (B, C)
| Name | Adjoins |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
bool Adjoins
(
const TRange & Other
) const
true if this range adjoins the other, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Other | The other range. |