FuncSketch
Loading...
Searching...
No Matches
pow_number.h
Go to the documentation of this file.
1/*
2 * Copyright 2026 MusicScience37 (Kenta Kabashima)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
20#pragma once
21
22#include <cmath>
23
25
26namespace func_sketch::math {
27
37template <typename Base, typename Exponent>
38[[nodiscard]] inline auto pow_number(Base base, Exponent exponent) {
39 return std::pow(base, exponent);
40}
41
50template <typename Exponent>
51[[nodiscard]] inline auto pow_number(Integer base, Exponent exponent) {
52 return std::pow(static_cast<Real>(base), exponent);
53}
54
63template <typename Base>
64[[nodiscard]] inline auto pow_number(Base base, Integer exponent) {
65 return std::pow(base, static_cast<Real>(exponent));
66}
67
75inline auto pow_number(Integer base, Integer exponent) {
76 return std::pow(static_cast<Real>(base), static_cast<Real>(exponent));
77}
78
79} // namespace func_sketch::math
Definitions of common types.
double Real
Type of real numbers in this project.
std::int32_t Integer
Type of integer numbers in this project.
auto pow_number(Base base, Exponent exponent)
Compute power for number types in this library.
Definition pow_number.h:38