32namespace func_sketch::math {
Class of lists of mathematical functions.
void emplace(T &&function)
Append a mathematical function to the list.
Declaration of functions for complex numbers.
MathFunction arg_function()
Create arg function.
MathFunction imag_function()
Create imag function.
MathFunction real_function()
Create real function.
MathFunction conj_function()
Create conj function.
Declaration of functions to create error functions.
MathFunction erfc_function()
Create erfc function.
MathFunction erf_function()
Create erf function.
Declaration of functions to create exponential functions.
MathFunction exp_function()
Create exp function.
MathFunction expm1_function()
Create expm1 function.
MathFunction exp2_function()
Create exp2 function.
Declaration of functions to create gamma functions.
MathFunction lgamma_function()
Create lgamma function.
MathFunction gamma_function()
Create gamma function.
Declaration of generate_math_function_list function.
MathFunctionList generate_math_function_list()
Generate a list of mathematical functions.
Declaration of functions to create hyperbolic functions.
MathFunction acosh_function()
Create acosh function.
MathFunction cosh_function()
Create cosh function.
MathFunction asinh_function()
Create asinh function.
MathFunction sinh_function()
Create sinh function.
MathFunction atanh_function()
Create atanh function.
MathFunction tanh_function()
Create tanh function.
Declaration of functions to create logarithmic functions.
MathFunction log10_function()
Create log10 function.
MathFunction log2_function()
Create log2 function.
MathFunction log_function()
Create log function.
MathFunction log1p_function()
Create log1p function.
Declaration of functions to create functions of miscellaneous floating-point operations.
MathFunction round_function()
Create round function.
MathFunction trunc_function()
Create trunc function.
MathFunction ceil_function()
Create ceil function.
MathFunction floor_function()
Create floor function.
MathFunction abs_function()
Create abs function.
Declaration of functions to create power functions.
MathFunction pow_function()
Create pow function.
MathFunction sqrt_function()
Create sqrt function.
MathFunction cbrt_function()
Create cbrt function.
Declaration of functions to create trigonometric functions.
MathFunction cos_function()
Create cos function.
MathFunction acos_function()
Create acos function.
MathFunction asin_function()
Create asin function.
MathFunction tan_function()
Create tan function.
MathFunction sin_function()
Create sin function.
MathFunction atan_function()
Create atan function.
MathFunction atan2_function()
Create atan2 function.