llvm::IntervalData::right

right overloads

Synopses

Declared in <llvm/ADT/IntervalTree.h>

Return the right endpoint of the closed interval.

PointType
right() const;
» more...

Return true if Point is inside the right bound of closed interval [Left;Right]. This is Point <= Right for closed intervals.

bool
right(PointType const& Point) const;
» more...

Return Value

  • The right endpoint.
  • True if Point is on or to the left of the right endpoint.

Parameters

NameDescription
PointPoint to test against the right endpoint.