2#include <ossia/detail/hash_map.hpp>
15struct lower_bound_helper
17 template <
typename T,
typename U>
18 auto operator()(
const T& vec,
const U& val)
const noexcept
20 return std::lower_bound(vec.begin(), vec.end(), val);
22 template <
typename T,
typename U>
23 requires requires(T vec, U val) { vec.lower_bound(val); }
24 auto operator()(
const T& vec,
const U& val)
const noexcept
26 return vec.lower_bound(val);
32 requires requires(T it) { it->first; }
33 auto operator()(
const T& it)
const noexcept
39 auto operator()(
const T& it)
const noexcept
46template <
typename T,
typename U>
47const auto& closest_element(
const T& vec,
const U& val)
noexcept
53 auto it = lower_bound_helper{}(vec, val);
56 if(it != vec.cbegin())
59 if(abs(map_key_helper{}(prev)-val) < abs(map_key_helper{}(it)-val))
71 return *vec.crbegin();
74template <
typename T,
typename U>
75auto closest_element_it(
const T& vec,
const U& val)
noexcept
82 auto it = lower_bound_helper{}(vec, val);
85 if(it != vec.cbegin())
88 if(std::abs(map_key_helper{}(prev)-val) < std::abs(map_key_helper{}(it)-val))
100 return vec.end() - 1;
104template <
typename T,
typename U>
105auto closest_next_element(T it, T end,
const U& val)
noexcept
109 auto next_it = it + 1;
110 while(next_it != end)
112 if(std::abs(map_key_helper{}(it)-val) < std::abs(map_key_helper{}(next_it)-val))
121template <
typename T,
typename U>
122 requires requires(T it) {
126auto closest_next_element(T it, T end,
const U& val)
noexcept
130 auto next_it = it + 1;
131 while(next_it != end)
134 if(std::abs(map_key_helper{}(it)-val) < std::abs(map_key_helper{}(next_it)-val))
Definition transitive_closure.hpp:27