From 9c205fca8fc0e6fe33598b35efea13cb5bcb746b Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Fri, 22 Apr 2022 12:55:48 -0400 Subject: [PATCH] add very important note about supported functions --- parsing/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/parsing/build.rs b/parsing/build.rs index aee249c..e9fdaf1 100644 --- a/parsing/build.rs +++ b/parsing/build.rs @@ -3,6 +3,7 @@ use std::fs::File; use std::io::{BufWriter, Write}; use std::path::Path; +/// REMEMBER TO UPDATE THIS IF EXMEX ADDS NEW FUNCTIONS const SUPPORTED_FUNCTIONS: [&str; 22] = [ "abs", "signum", "sin", "cos", "tan", "asin", "acos", "atan", "sinh", "cosh", "tanh", "floor", "round", "ceil", "trunc", "fract", "exp", "sqrt", "cbrt", "ln", "log2", "log10",