1:
val cos : x : Expression -> Expression
Возвращает косинус заданного выражения
1: 2: 3: 4: 5: 6: 7:
let exp = "4*x" |> Infix.parseOrUndefined let newExpr = Operators.cos exp newExpr |> Infix.format |> printfn "%s"
cos(4*x)