
// This file is generated by GenerateCSSMathFunctions.cpp

#pragma once

#include <AK/Optional.h>
#include <AK/StringView.h>

namespace Web::CSS {

enum class MathFunction {
    Calc,
    Abs,
    Acos,
    Asin,
    Atan,
    Atan2,
    Clamp,
    Cos,
    Exp,
    Hypot,
    Log,
    Max,
    Min,
    Mod,
    Pow,
    Random,
    Rem,
    Round,
    Sign,
    Sin,
    Sqrt,
    Tan,

};

Optional<MathFunction> math_function_from_string(StringView);
    
}
