4#ifndef TETL_CMATH_ATAN2_HPP
5#define TETL_CMATH_ATAN2_HPP
7#include <etl/_3rd_party/gcem/gcem.hpp>
18 return etl::detail::gcem::atan2(x, y);
23 return etl::detail::gcem::atan2(x, y);
28 return etl::detail::gcem::atan2(x, y);
31[[
nodiscard]]
constexpr auto atan2(
long double x,
long double y)
noexcept ->
long double
33 return etl::detail::gcem::atan2(x, y);
36[[
nodiscard]]
constexpr auto atan2l(
long double x,
long double y)
noexcept ->
long double
38 return etl::detail::gcem::atan2(x, y);
constexpr auto atan2f(float x, float y) noexcept -> float
Definition atan2.hpp:21
constexpr auto atan2(long double x, long double y) noexcept -> long double
Definition atan2.hpp:31
constexpr auto atan2l(long double x, long double y) noexcept -> long double
Definition atan2.hpp:36
constexpr auto atan2(float x, float y) noexcept -> float
Definition atan2.hpp:16
constexpr auto atan2(double x, double y) noexcept -> double
Definition atan2.hpp:26
Definition adjacent_find.hpp:9