LLVM API Documentation
#include <IntervalMap.h>
Public Member Functions | |
IntervalMapOverlaps (const MapA &a, const MapB &b) | |
IntervalMapOverlaps - Create an iterator for the overlaps of a and b. More... | |
bool | valid () const |
valid - Return true if iterator is at an overlap. More... | |
const MapA::const_iterator & | a () const |
a - access the left hand side in the overlap. More... | |
const MapB::const_iterator & | b () const |
b - access the right hand side in the overlap. More... | |
KeyType | start () const |
start - Beginning of the overlapping interval. More... | |
KeyType | stop () const |
stop - End of the overlapping interval. More... | |
void | skipA () |
skipA - Move to the next overlap that doesn't involve a(). More... | |
void | skipB () |
skipB - Move to the next overlap that doesn't involve b(). More... | |
IntervalMapOverlaps & | operator++ () |
Preincrement - Move to the next overlap. More... | |
void | advanceTo (KeyType x) |
IntervalMapOverlaps - Iterate over the overlaps of mapped intervals in two IntervalMaps. The maps may be different, but the KeyT and Traits types should be the same.
Typical uses:
Definition at line 2058 of file IntervalMap.h.
|
inline |
IntervalMapOverlaps - Create an iterator for the overlaps of a and b.
Definition at line 2099 of file IntervalMap.h.
References llvm::object::advance().
|
inline |
a - access the left hand side in the overlap.
Definition at line 2109 of file IntervalMap.h.
|
inline |
advanceTo - Move to the first overlapping interval with stopLess(x, stop()).
Definition at line 2152 of file IntervalMap.h.
References llvm::object::advance().
|
inline |
b - access the right hand side in the overlap.
Definition at line 2112 of file IntervalMap.h.
|
inline |
Preincrement - Move to the next overlap.
Definition at line 2141 of file IntervalMap.h.
|
inline |
skipA - Move to the next overlap that doesn't involve a().
Definition at line 2129 of file IntervalMap.h.
References llvm::object::advance().
|
inline |
skipB - Move to the next overlap that doesn't involve b().
Definition at line 2135 of file IntervalMap.h.
References llvm::object::advance().
|
inline |
start - Beginning of the overlapping interval.
Definition at line 2115 of file IntervalMap.h.
|
inline |
stop - End of the overlapping interval.
Definition at line 2122 of file IntervalMap.h.
|
inline |
valid - Return true if iterator is at an overlap.
Definition at line 2104 of file IntervalMap.h.