Skip to content

0.1.21

Latest
Compare
Choose a tag to compare
@blacksmithgu blacksmithgu released this 20 Mar 07:56

0.1.21 (Beta)

  • Adds dc.evaluate() and dc.tryEvaluate() for evaluating the datacore expression language programmatically.
  • Adds postfix function calls to the datacore syntax. This allows you to chain functions:
lower("YES") => "YES".lower()
replace(lower("YES"), "e", a") => "YES".lower().replace("e", a")

Postfix syntax implicitly adds the callee object as the first argument.