1#ifndef LIBTEDDY_DETAILS_UTILS_HPP
2#define LIBTEDDY_DETAILS_UTILS_HPP
4#include <libteddy/details/types.hpp>
20auto constexpr int_pow(Base base, int32 exponent) -> Base
50auto parse (std::string_view
const input) -> std::optional<Num>
54 = std::from_chars(input.data(), input.data() + input.size(), ret);
55 return std::errc {} == result.ec
56 && result.ptr == input.data() + input.size()
57 ? std::optional<Num>(ret)
64inline auto do_hash (
void*
const p) -> std::size_t
66 return reinterpret_cast<std::size_t
>(p) >> 4;
72inline auto do_hash (int32
const x) -> std::size_t
74 return static_cast<std::size_t
>(x);
81auto add_hash (std::size_t& hash, T
const& elem) ->
void
84 hash ^= do_hash(elem) + 0x9e3779b9 + (hash << 6) + (hash >> 2);
91auto pack_hash (Ts
const&... args) -> std::size_t
93 std::size_t result = 0;
94 (add_hash(result, args), ...);
103template<
class... Args>
104auto any (Args... args)
106 return (args || ...);
113constexpr auto min (T lhs, T rhs) -> T
115 return lhs < rhs ? lhs : rhs;
122constexpr auto max (T lhs, T rhs) -> T
124 return lhs > rhs ? lhs : rhs;
131constexpr auto pack_min (X x) -> X
139template<
class X,
class... Xs>
140constexpr auto pack_min (X x, Xs... xs) -> X
142 return min(x, pack_min(xs...));
150auto max_elem (It first, It
const last) -> It
153 while (first != last)
168template<
class It,
class Predicate>
169auto find_if (It first, It
const last, Predicate test) -> It
171 while (first != last)
186template<
class It,
class Predicate>
187auto find_if_not (It first, It
const last, Predicate test) -> It
189 while (first != last)
191 if (not test(*first))
204template<
class T,
class U = T>
205auto exchange (T& var, U newVal)
noexcept -> T
217constexpr auto swap (T& first, T& second)
noexcept ->
void
227template<
class T,
class Compare>
228auto sort (std::vector<T>& xs, Compare cmp) ->
void
235 auto const sift_down = [&xs, cmp] (uint32 parent, uint32
const size)
237 uint32 left = 2 * parent + 1;
238 uint32 right = left + 1;
241 uint32 swap = parent;
242 if (cmp(xs[swap], xs[left]))
247 if (right < size && cmp(xs[swap], xs[right]))
257 utils::swap(xs[parent], xs[swap]);
259 left = 2 * parent + 1;
264 uint32
const size =
static_cast<uint32
>(xs.size());
267 for (uint32 i = size / 2 + 1; i > 0;)
274 for (uint32 last = size - 1; last > 0; --last)
276 utils::swap(xs[last], xs[0]);
284 static constexpr bool value =
false;
290 static constexpr bool value =
true;
293template<
class T,
class U>
296 static constexpr bool value =
false;
302 static constexpr bool value =
true;
305template<
class T,
class U>
311 std::vector<typename T::value_type, typename T::allocator_type>
318template<
bool B,
class T,
class F>
324template<
class T,
class F>
333template<
class T,
class F>
342template<
class X,
class T>
Provides member typedef based on the value of B Implementation of std::conditional.
Definition tools.hpp:319