3#ifndef TETL_CMATH_SINH_HPP
4#define TETL_CMATH_SINH_HPP
6#include <etl/_3rd_party/gcem/gcem.hpp>
14[[nodiscard]]
constexpr auto sinh(
float arg)
noexcept ->
float {
return etl::detail::gcem::sinh(
arg); }
19[[nodiscard]]
constexpr auto sinhf(
float arg)
noexcept ->
float {
return etl::detail::gcem::sinh(
arg); }
24[[nodiscard]]
constexpr auto sinh(
double arg)
noexcept ->
double {
return etl::detail::gcem::sinh(
arg); }
29[[nodiscard]]
constexpr auto sinh(
long double arg)
noexcept ->
long double {
return etl::detail::gcem::sinh(
arg); }
34[[nodiscard]]
constexpr auto sinhl(
long double arg)
noexcept ->
long double {
return etl::detail::gcem::sinh(
arg); }
40[[nodiscard]]
constexpr auto sinh(T
arg)
noexcept ->
double
42 return etl::detail::gcem::sinh(
static_cast<double>(
arg));
constexpr auto sinh(float arg) noexcept -> float
Computes the hyperbolic sine of arg.
Definition sinh.hpp:14
constexpr auto sinhl(long double arg) noexcept -> long double
Computes the hyperbolic sine of arg.
Definition sinh.hpp:34
constexpr auto sinhf(float arg) noexcept -> float
Computes the hyperbolic sine of arg.
Definition sinh.hpp:19
constexpr auto arg(complex< T > const &z) noexcept -> T
Definition arg.hpp:15
Definition adjacent_find.hpp:8