LLVM
8.0.1
|
#include "llvm/ADT/IntervalMap.h"
Static Public Member Functions | |
static bool | startLess (const T &x, const T &a) |
startLess - Return true if x is not in [a;b]. More... | |
static bool | stopLess (const T &b, const T &x) |
stopLess - Return true if x is not in [a;b]. More... | |
static bool | adjacent (const T &a, const T &b) |
adjacent - Return true when the intervals [x;a] and [b;y] can coalesce. More... | |
static bool | nonEmpty (const T &a, const T &b) |
nonEmpty - Return true if [a;b] is non-empty. More... | |
Definition at line 138 of file IntervalMap.h.
|
inlinestatic |
adjacent - Return true when the intervals [x;a] and [b;y] can coalesce.
This is a+1 == b for closed intervals, a == b for half-open intervals.
Definition at line 153 of file IntervalMap.h.
|
inlinestatic |
nonEmpty - Return true if [a;b] is non-empty.
This is a <= b for a closed interval, a < b for [a;b) half-open intervals.
Definition at line 159 of file IntervalMap.h.
|
inlinestatic |
startLess - Return true if x is not in [a;b].
This is x < a both for closed intervals and for [a;b) half-open intervals.
Definition at line 141 of file IntervalMap.h.
|
inlinestatic |
stopLess - Return true if x is not in [a;b].
This is b < x for a closed interval, b <= x for [a;b) half-open intervals.
Definition at line 147 of file IntervalMap.h.