Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TRange
Description
Check whether this range conjoins the two given ranges.
A range conjoins two non-overlapping ranges if it adjoins both of them, i.e. [B, C) conjoins the two ranges [A, B) and [C, D).
| Name | Conjoins |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
bool Conjoins
(
const TRange & X,
const TRange & Y
) const
true if this range conjoins the two ranges, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| X | The first range. |
| Y | The second range. |