Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Release v0.2.1

Compare
Choose a tag to compare
@DeLaGuardo DeLaGuardo released this 29 Aug 10:05
· 279 commits to master since this release
3cbf044

Changes

  • Introducing excel-like coercions for some functions
    • excel-number function will try to coerce any to number. Booleans coerced too (true -> 1, false -> 0)
    • excel-str function will try to coerce any to string. Booleans coerced too (true -> "TRUE", false -> "FALSE")

Now it is possible to pass vectors of strings to some functions (AVERAGE, SUM, MIN, etc.)

  • AVERAGE("1", "2", 4, TRUE, FALSE) => 2