You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed it was missing from d4647ad in the UnaryOperation enum:
/// Operations that can be applied to a value in memory, requiring one operand.#[derive(Debug,Deserialize,Serialize,Clone,Copy,PartialEq,Eq)]pubenumUnaryOperation{/// Logical negationNot,/// Flip the sign of a signed numberNeg,/// Get the absolute value of a numberAbs,/// Arc cosineAcos,/// Arc sineAsin,/// Arc tangentAtan,/// CeilingCeil,/// CosineCos,/// Floor,Floor,/// Natural logarithmLn,/// Logarithm base 10Log10,/// Logarithm base 2Log2,/// SineSin,/// Square rootSqrt,/// TangentTan,/// Convert radians to degreesToDegrees,/// Convert degrees to radiansToRadians,}
The text was updated successfully, but these errors were encountered:
I noticed it was missing from d4647ad in the
UnaryOperation
enum:The text was updated successfully, but these errors were encountered: