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
OpenFormula basically defines the standard library of functions that are common among various spreadsheet implementations: https://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#__RefHeading__1018044_715980110. Currently csv++ is ignorant of these so it can't inform the user if a function is called with the wrong args or if it does not exist. If I make csv++ aware of these functions (make a crate that scrapes that page and loads them into a BTreeMap) I can make it much much more helpful by being able to warn about:
calling functions that don't exist
calling functions with the wrong number of args
maybe one day, enforce the types of args
The text was updated successfully, but these errors were encountered:
OpenFormula basically defines the standard library of functions that are common among various spreadsheet implementations: https://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#__RefHeading__1018044_715980110. Currently csv++ is ignorant of these so it can't inform the user if a function is called with the wrong args or if it does not exist. If I make csv++ aware of these functions (make a crate that scrapes that page and loads them into a
BTreeMap
) I can make it much much more helpful by being able to warn about:The text was updated successfully, but these errors were encountered: