mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-31 09:32:11 +00:00
Add IntervalMap::const_iterator::atBegin().
It returns true when operator--() can be called. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138107 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cbe003b243
commit
cafe614035
@ -1335,6 +1335,9 @@ public:
|
||||
/// valid - Return true if the current position is valid, false for end().
|
||||
bool valid() const { return path.valid(); }
|
||||
|
||||
/// atBegin - Return true if the current position is the first map entry.
|
||||
bool atBegin() const { return path.atBegin(); }
|
||||
|
||||
/// start - Return the beginning of the current interval.
|
||||
const KeyT &start() const { return unsafeStart(); }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user