| 1577 | |
| 1578 | template <typename T, typename F, std::size_t N> |
| 1579 | constexpr std::array<std::invoke_result_t<F, T>, N> |
| 1580 | array_fmap(const std::array<T, N> &arr, F f) { |
| 1581 | return array_fmap_impl(arr, f, std::make_index_sequence<N>()); |
| 1582 | } |
| 1583 | |
| 1584 | constexpr COLORREF MeterCol(unsigned vol) noexcept { // // // |
| 1585 | constexpr COLORREF COL_MIN = MakeRGB(64, 240, 32); |
no test coverage detected