prime/include/rstl/reserved_vector.hpp

66 lines
2.1 KiB
C++
Raw Normal View History

#ifndef _RSTL_RESERVED_VECTOR
#define _RSTL_RESERVED_VECTOR
#include "types.h"
2022-08-09 23:03:51 +00:00
#include "rstl/construct.hpp"
#include "rstl/pointer_iterator.hpp"
namespace rstl {
template < typename T, int N >
class reserved_vector {
int x0_count;
uchar x4_data[N * sizeof(T)];
public:
typedef pointer_iterator< T, reserved_vector< T, N >, void > iterator;
typedef const_pointer_iterator< T, reserved_vector< T, N >, void > const_iterator;
2022-08-13 01:26:00 +00:00
inline iterator begin() { return iterator(data()); }
inline const_iterator begin() const { return const_iterator(data()); }
inline iterator end() { return iterator(data() + x0_count); }
inline const_iterator end() const { return const_iterator(data() + x0_count); }
2022-08-13 01:26:00 +00:00
reserved_vector() : x0_count(0) {}
2022-10-04 00:00:46 +00:00
reserved_vector(const T& value) : x0_count(N) { uninitialized_fill_n(data(), N, value); }
reserved_vector(const reserved_vector& other) : x0_count(other.x0_count) {
uninitialized_copy_n(other.data(), x0_count, data());
}
reserved_vector& operator=(const reserved_vector& other) {
if (this != &other) {
clear();
2022-10-05 23:39:15 +00:00
uninitialized_copy(other.data(), other.data() + other.size(), data());
x0_count = other.x0_count;
}
return *this;
}
void clear() {
for (int i = 0; i < x0_count; ++i) {
2022-10-04 00:00:46 +00:00
destroy(&data()[i]);
}
x0_count = 0;
}
2022-08-13 01:26:00 +00:00
~reserved_vector() { clear(); }
void push_back(const T& in) {
iterator out = begin() + x0_count;
out = in;
++x0_count;
}
2022-08-13 01:26:00 +00:00
inline T* data() { return reinterpret_cast< T* >(x4_data); }
inline const T* data() const { return reinterpret_cast< const T* >(x4_data); }
inline int size() const { return x0_count; }
inline int capacity() const { return N; }
2022-08-13 01:26:00 +00:00
inline T& front() { return data()[0]; }
inline const T& front() const { return data()[0]; }
inline T& back() { return data()[x0_count - 1]; }
inline const T& back() const { return data()[x0_count - 1]; }
inline T& operator[](int idx) { return data()[idx]; }
inline const T& operator[](int idx) const { return data()[idx]; }
};
} // namespace rstl
#endif // _RSTL_RESERVED_VECTOR