mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-10 08:40:41 +00:00
Add a range remove method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2468 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cb6d70c6e0
commit
fac8a7052f
@ -84,10 +84,11 @@ public:
|
||||
// specified by the iterator, and leaves the iterator pointing to the element
|
||||
// that used to follow the element deleted.
|
||||
//
|
||||
ValueSubclass *remove(iterator &DI); // Defined in ValueHolderImpl.h
|
||||
ValueSubclass *remove(const iterator &DI); // Defined in ValueHolderImpl.h
|
||||
void remove(ValueSubclass *D); // Defined in ValueHolderImpl.h
|
||||
ValueSubclass *pop_back(); // Defined in ValueHolderImpl.h
|
||||
ValueSubclass *remove(iterator &DI);
|
||||
ValueSubclass *remove(const iterator &DI);
|
||||
void remove(ValueSubclass *D);
|
||||
void remove(iterator Start, iterator End);
|
||||
ValueSubclass *pop_back();
|
||||
|
||||
// replaceWith - This removes the element pointed to by 'Where', and inserts
|
||||
// NewValue in it's place. The old value is returned. 'Where' must be a
|
||||
|
Loading…
x
Reference in New Issue
Block a user