prime/include/Kyoto/TAverage.hpp
Luke Street 5580c42dc6 Various build fixes for host builds
Former-commit-id: 2659556809a8e7b0b77ddc974e9ddaa200a77250
2022-10-20 21:32:04 -04:00

43 lines
895 B
C++

#ifndef _TAVERAGE
#define _TAVERAGE
#include "types.h"
#include "rstl/optional_object.hpp"
#include "rstl/vector.hpp"
template < typename T >
T GetAverageValue(const T* ptr, int count); // TODO
template < typename T >
class TAverage : rstl::vector< T > {
public:
TAverage() {}
TAverage(int capacity, const T& value);
void AddValue(const T& value);
rstl::optional_object< T > GetAverage() const {
if (this->empty()) {
return rstl::optional_object_null();
} else {
return GetAverageValue(this->data(), this->size());
}
}
};
template < typename T >
TAverage< T >::TAverage(int capacity, const T& value) {
this->resize(capacity, value);
}
template < typename T >
void TAverage< T >::AddValue(const T& value) {
if (this->size() == this->capacity()) {
// TODO ?
this->x4_count -= 1;
}
this->insert(this->begin(), value);
}
#endif // _TAVERAGE