mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
56 lines
1.3 KiB
C
56 lines
1.3 KiB
C
![]() |
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <algorithm>
|
||
|
|
||
|
// Add more forwarding functions to the m_data std::vector as needed.
|
||
|
namespace vcpkg
|
||
|
{
|
||
|
template <class T>
|
||
|
class SortedVector
|
||
|
{
|
||
|
public:
|
||
|
using size_type = typename std::vector<T>::size_type;
|
||
|
using iterator = typename std::vector<T>::const_iterator;
|
||
|
|
||
|
explicit SortedVector<T>(std::vector<T> v) : m_data(std::move(v))
|
||
|
{
|
||
|
if (!std::is_sorted(m_data.begin(), m_data.end()))
|
||
|
{
|
||
|
std::sort(m_data.begin(), m_data.end());
|
||
|
}
|
||
|
}
|
||
|
template <class Compare>
|
||
|
SortedVector<T>(std::vector<T> v, Compare comp) : m_data(std::move(v))
|
||
|
{
|
||
|
if (!std::is_sorted(m_data.cbegin(), m_data.cend(), comp))
|
||
|
{
|
||
|
std::sort(m_data.begin(), m_data.end(), comp);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
iterator begin() const
|
||
|
{
|
||
|
return this->m_data.cbegin();
|
||
|
}
|
||
|
|
||
|
iterator end() const
|
||
|
{
|
||
|
return this->m_data.cend();
|
||
|
}
|
||
|
|
||
|
bool empty() const
|
||
|
{
|
||
|
return this->m_data.empty();
|
||
|
}
|
||
|
|
||
|
size_type size() const
|
||
|
{
|
||
|
return this->m_data.size();
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
std::vector<T> m_data;
|
||
|
};
|
||
|
}
|