Provides core functionality used by multiple modules.
More...
|
| Algorithm |
| Provides core functionality used to configure algorithms.
|
|
| Configuration |
| Provides core functionality used to configure configurations.
|
|
|
template<typename base_t , std::unsigned_integral exp_t> |
base_t | seqan3::pow (base_t base, exp_t exp) |
| Computes the value of base raised to the power exp . More...
|
|
Provides core functionality used by multiple modules.
The core module contains concepts, functions and some classes that are used by multiple other modules, but that usually are not relevant to most users of the library.
◆ range_innermost_value_t
◆ semiregular_box
◆ semiregular_box_t
◆ pow()
base_t seqan3::pow |
( |
base_t |
base, |
|
|
exp_t |
exp |
|
) |
| |
| no-api |
Computes the value of base
raised to the power exp
.
- Parameters
-
[in] | base | The base to compute the power for. |
[in] | exp | The power to raise base to. |
- Returns
.
- Exceptions
-
- See also
- https://en.cppreference.com/w/cpp/numeric/math/pow
The difference to std::pow
is that the powers of an integer base
are computed exact (without precision loss due to promoting to double
) iff exp_t
models std::unsigned_integral
and
base_t
models std::unsigned_integral
(returns uint64_t
)
base_t
models std::integral
, but not std::unsigned_integral
(returns int64_t
)
In all other cases the return value and type is equivalent to that of std::pow
.
Example
int main()
{
seqan3::debug_stream << static_cast<uint64_t>(
std::pow(5u, 25u)) <<
'\n';
}
Provides seqan3::debug_stream and related types.
base_t pow(base_t base, exp_t exp)
Computes the value of base raised to the power exp.
Definition: math.hpp:124
debug_stream_type debug_stream
A global instance of seqan3::debug_stream_type.
Definition: debug_stream.hpp:42
Provides math related functionality.
◆ range_dimension_v
template<typename t >
constexpr size_t seqan3::range_dimension_v = 1 |
|
no-apiconstexpr |
Returns the number of times you can call seqan3::value_type_t
recursively on t (type trait).
- Template Parameters
-
Attention, this type trait implicitly removes cv-qualifiers and reference from the types it recurses on and returns.