1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-29 00:08:14 +03:00

wl2723 - ndb opt. nr

This commit is contained in:
jonas@perch.ndb.mysql.com
2006-01-11 11:35:25 +01:00
parent 0f7214d9dc
commit 161645c81e
138 changed files with 9336 additions and 3311 deletions

View File

@@ -31,6 +31,8 @@ public:
unsigned size() const { return m_size; };
void push_back(const T &);
void push(const T&, unsigned pos);
T& set(T&, unsigned pos, T& fill_obj);
T& back();
void erase(unsigned index);
@@ -104,6 +106,31 @@ Vector<T>::push_back(const T & t){
m_size++;
}
template<class T>
void
Vector<T>::push(const T & t, unsigned pos)
{
push_back(t);
if (pos < m_size - 1)
{
for(unsigned i = m_size - 1; i > pos; i--)
{
m_items[i] = m_items[i-1];
}
m_items[pos] = t;
}
}
template<class T>
T&
Vector<T>::set(T & t, unsigned pos, T& fill_obj)
{
fill(pos, fill_obj);
T& ret = m_items[pos];
m_items[pos] = t;
return ret;
}
template<class T>
void
Vector<T>::erase(unsigned i){