2022-10-15 14:44:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Geode/DefaultInclude.hpp>
|
|
|
|
#include <algorithm>
|
2022-10-30 14:59:20 -04:00
|
|
|
#include <string>
|
2022-12-12 14:43:40 -05:00
|
|
|
#include <concepts>
|
2022-12-12 16:07:34 -05:00
|
|
|
#include <optional>
|
|
|
|
#include <iterator>
|
2022-10-15 14:44:35 -04:00
|
|
|
|
2022-12-12 15:36:19 -05:00
|
|
|
#ifndef __cpp_lib_concepts
|
|
|
|
namespace std {
|
|
|
|
// <concepts> isn't working for me lmao
|
|
|
|
template <class From, class To>
|
|
|
|
concept convertible_to = std::is_convertible_v<From, To> && requires {
|
|
|
|
static_cast<To>(std::declval<From>());
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-01-23 12:31:38 -05:00
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
|
2022-10-15 14:44:35 -04:00
|
|
|
namespace geode::utils::ranges {
|
2022-10-30 14:59:20 -04:00
|
|
|
template <class C>
|
2022-10-15 14:44:35 -04:00
|
|
|
concept ValidConstContainer = requires(C const& c) {
|
|
|
|
c.begin();
|
|
|
|
c.end();
|
2022-10-25 14:49:50 -04:00
|
|
|
{ c.size() } -> std::convertible_to<size_t>;
|
2022-10-15 14:44:35 -04:00
|
|
|
typename C::value_type;
|
2022-10-24 04:43:17 -04:00
|
|
|
typename C::iterator;
|
|
|
|
typename C::const_iterator;
|
2022-10-15 14:44:35 -04:00
|
|
|
};
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <class C>
|
2022-10-15 14:44:35 -04:00
|
|
|
concept ValidMutContainer = requires(C& c) {
|
|
|
|
c.begin();
|
|
|
|
c.end();
|
2022-10-25 14:49:50 -04:00
|
|
|
{ c.size() } -> std::convertible_to<size_t>;
|
2022-10-15 14:44:35 -04:00
|
|
|
typename C::value_type;
|
2022-10-24 04:43:17 -04:00
|
|
|
typename C::iterator;
|
|
|
|
typename C::const_iterator;
|
2022-10-15 14:44:35 -04:00
|
|
|
};
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <class C>
|
2022-10-15 14:44:35 -04:00
|
|
|
concept ValidContainer = ValidConstContainer<C> && ValidMutContainer<C>;
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <class P, class C>
|
2022-10-15 14:44:35 -04:00
|
|
|
concept ValidCUnaryPredicate = requires(P p, typename C::value_type const& t) {
|
|
|
|
{ p(t) } -> std::convertible_to<bool>;
|
|
|
|
};
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <class P, class From, class Into>
|
2022-10-15 14:44:35 -04:00
|
|
|
concept ValidIntoConverter = requires(P p, From const& t) {
|
|
|
|
{ p(t) } -> std::convertible_to<Into>;
|
|
|
|
};
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <ValidConstContainer C>
|
2022-10-15 14:44:35 -04:00
|
|
|
bool contains(C const& cont, typename C::value_type const& elem) {
|
|
|
|
return std::find(cont.begin(), cont.end(), elem) != cont.end();
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <ValidConstContainer C, ValidCUnaryPredicate<C> Predicate>
|
2022-10-15 14:44:35 -04:00
|
|
|
bool contains(C const& cont, Predicate fun) {
|
|
|
|
return std::find_if(cont.begin(), cont.end(), fun) != cont.end();
|
|
|
|
}
|
|
|
|
|
2022-11-02 07:44:45 -04:00
|
|
|
template <ValidConstContainer C, ValidCUnaryPredicate<C> Predicate>
|
2022-10-24 04:43:17 -04:00
|
|
|
std::optional<typename C::value_type> find(C const& cont, Predicate fun) {
|
|
|
|
auto it = std::find_if(cont.begin(), cont.end(), fun);
|
|
|
|
if (it != cont.end()) {
|
|
|
|
return std::optional(*it);
|
|
|
|
}
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-11-02 07:44:45 -04:00
|
|
|
template <ValidConstContainer C>
|
2022-10-25 14:49:50 -04:00
|
|
|
std::optional<size_t> indexOf(C const& cont, typename C::value_type const& elem) {
|
2022-10-24 04:43:17 -04:00
|
|
|
auto it = std::find(cont.begin(), cont.end(), elem);
|
|
|
|
if (it != cont.end()) {
|
2022-10-25 14:49:50 -04:00
|
|
|
return std::optional(std::distance(cont.begin(), it));
|
|
|
|
}
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-11-02 07:44:45 -04:00
|
|
|
template <ValidConstContainer C, ValidCUnaryPredicate<C> Predicate>
|
2022-10-25 14:49:50 -04:00
|
|
|
std::optional<size_t> indexOf(C const& cont, Predicate fun) {
|
|
|
|
auto it = std::find_if(cont.begin(), cont.end(), fun);
|
|
|
|
if (it != cont.end()) {
|
|
|
|
return std::optional(std::distance(cont.begin(), it));
|
|
|
|
}
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-11-02 07:44:45 -04:00
|
|
|
template <ValidMutContainer C>
|
2022-10-25 14:49:50 -04:00
|
|
|
bool move(C& cont, typename C::value_type const& elem, size_t where) {
|
|
|
|
if (where > cont.size() - 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
auto ix = indexOf(cont, elem);
|
|
|
|
if (ix) {
|
|
|
|
if (ix.value() > where) {
|
|
|
|
std::rotate(
|
|
|
|
cont.rend() - ix.value() - 1,
|
|
|
|
cont.rend() - ix.value(),
|
|
|
|
cont.rend() - where
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
std::rotate(
|
|
|
|
cont.begin() + ix.value(),
|
|
|
|
cont.begin() + ix.value() + 1,
|
|
|
|
cont.begin() + where + 1
|
|
|
|
);
|
|
|
|
}
|
2022-10-24 04:43:17 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-02 07:44:45 -04:00
|
|
|
template <ValidConstContainer C, class Output>
|
2022-10-15 14:44:35 -04:00
|
|
|
requires
|
|
|
|
std::is_default_constructible_v<Output> &&
|
|
|
|
std::is_convertible_v<Output, typename C::value_type>
|
|
|
|
Output join(C const& cont, Output const& separator) {
|
|
|
|
auto res = Output();
|
|
|
|
bool first = true;
|
|
|
|
for (auto& p : cont) {
|
|
|
|
if (!first) {
|
|
|
|
res += separator;
|
2022-10-30 14:59:20 -04:00
|
|
|
}
|
|
|
|
else {
|
2022-10-15 14:44:35 -04:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
res += p;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <ValidConstContainer C>
|
2022-10-15 14:44:35 -04:00
|
|
|
std::string join(C const& cont, std::string const& separator) {
|
|
|
|
auto res = std::string();
|
|
|
|
bool first = true;
|
|
|
|
for (auto& p : cont) {
|
|
|
|
if (!first) {
|
|
|
|
res += separator;
|
2022-10-30 14:59:20 -04:00
|
|
|
}
|
|
|
|
else {
|
2022-10-15 14:44:35 -04:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
res += p;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <
|
|
|
|
ValidConstContainer C, class Output,
|
|
|
|
ValidIntoConverter<typename C::value_type, Output> Conv>
|
|
|
|
|
|
|
|
requires std::is_default_constructible_v<Output> Output
|
|
|
|
join(C const& cont, Output const& separator, Conv converter) {
|
2022-10-15 14:44:35 -04:00
|
|
|
auto res = Output();
|
|
|
|
bool first = true;
|
|
|
|
for (auto& p : cont) {
|
|
|
|
if (!first) {
|
|
|
|
res += separator;
|
2022-10-30 14:59:20 -04:00
|
|
|
}
|
|
|
|
else {
|
2022-10-15 14:44:35 -04:00
|
|
|
first = false;
|
|
|
|
}
|
2022-10-24 15:46:39 -04:00
|
|
|
res += converter(p);
|
2022-10-15 14:44:35 -04:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <ValidContainer C>
|
2022-10-15 14:44:35 -04:00
|
|
|
C& push(C& container, C const& toAdd) {
|
|
|
|
container.insert(container.end(), toAdd.begin(), toAdd.end());
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
2022-11-23 08:53:38 -05:00
|
|
|
template <ValidContainer C>
|
|
|
|
C concat(C const& cont, typename C::value_type const& value) {
|
|
|
|
auto copy = cont;
|
|
|
|
copy.push_back(value);
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <ValidContainer C>
|
|
|
|
C concat(C const& cont1, C const& cont2) {
|
|
|
|
auto copy = cont1;
|
|
|
|
ranges::push(copy, cont2);
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <ValidMutContainer C>
|
2022-10-15 14:44:35 -04:00
|
|
|
C& remove(C& container, typename C::value_type const& value) {
|
2022-10-30 14:59:20 -04:00
|
|
|
container.erase(std::remove(container.begin(), container.end(), value), container.end());
|
2022-10-27 08:12:31 -04:00
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
2022-11-02 06:57:03 -04:00
|
|
|
template <ValidMutContainer C, ValidCUnaryPredicate<C> Predicate>
|
2022-10-27 08:12:31 -04:00
|
|
|
C& remove(C& container, Predicate fun) {
|
|
|
|
container.erase(
|
|
|
|
std::remove_if(container.begin(), container.end(), fun),
|
|
|
|
container.end()
|
|
|
|
);
|
2022-10-15 14:44:35 -04:00
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <ValidContainer C, ValidCUnaryPredicate<C> Predicate>
|
2022-10-15 14:44:35 -04:00
|
|
|
C filter(C const& container, Predicate filterFun) {
|
|
|
|
auto res = C();
|
|
|
|
std::copy_if(container.begin(), container.end(), res.end(), filterFun);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
template <class R, ValidConstContainer C, class Reducer>
|
|
|
|
|
|
|
|
requires requires(Reducer r, R& acc, typename C::value_type t) {
|
|
|
|
r(acc, t);
|
|
|
|
}
|
|
|
|
|
2022-10-15 14:44:35 -04:00
|
|
|
R reduce(C const& container, Reducer reducer) {
|
|
|
|
auto res = R();
|
|
|
|
for (auto& item : container) {
|
|
|
|
reducer(res, item);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2022-10-30 14:59:20 -04:00
|
|
|
|
|
|
|
template <
|
2022-11-22 10:21:00 -05:00
|
|
|
ValidContainer Into, ValidConstContainer From,
|
2022-10-30 14:59:20 -04:00
|
|
|
ValidIntoConverter<typename From::value_type, typename Into::value_type> Mapper>
|
2022-10-15 14:44:35 -04:00
|
|
|
Into map(From const& from, Mapper mapper) {
|
|
|
|
auto res = Into();
|
2022-11-22 10:21:00 -05:00
|
|
|
std::transform(from.begin(), from.end(), std::back_inserter(res), mapper);
|
2022-10-15 14:44:35 -04:00
|
|
|
return res;
|
|
|
|
}
|
2022-11-09 10:32:44 -05:00
|
|
|
|
|
|
|
template <ValidConstContainer C>
|
|
|
|
typename C::value_type min(C const& container) {
|
|
|
|
auto it = std::min_element(container.begin(), container.end());
|
|
|
|
if (it == container.end()) {
|
|
|
|
return C::value_type();
|
|
|
|
}
|
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T, ValidConstContainer C, ValidIntoConverter<typename C::value_type, T> Member>
|
|
|
|
requires requires(T a, T b) {
|
|
|
|
a < b;
|
|
|
|
}
|
|
|
|
T min(C const& container, Member member) {
|
|
|
|
auto it = std::min_element(
|
|
|
|
container.begin(), container.end(),
|
|
|
|
[member](auto const& a, auto const& b) -> bool {
|
|
|
|
return member(a) < member(b);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
if (it == container.end()) {
|
|
|
|
return T();
|
|
|
|
}
|
|
|
|
return member(*it);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <ValidConstContainer C>
|
|
|
|
typename C::value_type max(C const& container) {
|
|
|
|
auto it = std::max_element(container.begin(), container.end());
|
|
|
|
if (it == container.end()) {
|
|
|
|
return C::value_type();
|
|
|
|
}
|
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T, ValidConstContainer C, ValidIntoConverter<typename C::value_type, T> Member>
|
|
|
|
requires requires(T a, T b) {
|
|
|
|
a < b;
|
|
|
|
T();
|
|
|
|
}
|
|
|
|
T max(C const& container, Member member) {
|
|
|
|
auto it = std::max_element(
|
|
|
|
container.begin(), container.end(),
|
|
|
|
[member](auto const& a, auto const& b) -> bool {
|
|
|
|
return member(a) < member(b);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
if (it == container.end()) {
|
|
|
|
return T();
|
|
|
|
}
|
|
|
|
return member(*it);
|
|
|
|
}
|
2022-12-08 17:28:05 -05:00
|
|
|
|
2023-02-14 14:54:45 -05:00
|
|
|
template <class C>
|
|
|
|
struct ReverseWrapper {
|
|
|
|
C iter;
|
2022-12-08 17:28:05 -05:00
|
|
|
|
2023-02-14 14:54:45 -05:00
|
|
|
decltype(auto) begin() {
|
|
|
|
return std::rbegin(iter);
|
|
|
|
}
|
2022-12-08 17:28:05 -05:00
|
|
|
|
2023-02-14 14:54:45 -05:00
|
|
|
decltype(auto) end() {
|
|
|
|
return std::rend(iter);
|
|
|
|
}
|
|
|
|
};
|
2022-12-08 17:28:05 -05:00
|
|
|
|
2023-02-14 14:54:45 -05:00
|
|
|
template <class C>
|
|
|
|
auto reverse(C&& iter) {
|
|
|
|
return ReverseWrapper<C>{std::forward<C>(iter)};
|
2022-12-08 17:28:05 -05:00
|
|
|
}
|
2022-10-15 14:44:35 -04:00
|
|
|
}
|