Added (more Be-ish) Add() methods.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15682 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
447308b363
commit
9897917b9c
@ -65,6 +65,9 @@ public:
|
||||
void PopFront();
|
||||
void PopBack();
|
||||
|
||||
status_t Add(const Value &value) { return PushBack(value); }
|
||||
status_t Add(const Value &value, int32 index) { return Insert(value, index); }
|
||||
|
||||
status_t Insert(const Value &value, int32 index);
|
||||
status_t Insert(const Value &value, const Iterator &iterator);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user