ClickHouse/src/Functions/atanh.cpp

20 lines
365 B
C++
Raw Normal View History

#include <Functions/FunctionMathUnary.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
namespace
{
struct AtanhName { static constexpr auto name = "atanh"; };
using FunctionAtanh = FunctionMathUnary<UnaryFunctionVectorized<AtanhName, atanh>>;
}
void registerFunctionAtanh(FunctionFactory & factory)
{
factory.registerFunction<FunctionAtanh>();
}
}