Skip to content

v0.2.0 Release

Compare
Choose a tag to compare
@ganigeorgiev ganigeorgiev released this 25 Dec 20:59
· 5 commits to master since this release
  • Detect negative numbers as TokenNumber
  • Added array/any/"at least one" operators:
    ?=     Array/Any equal operator (eg. `a?=b`)
    ?!=    Array/Any NOT Equal operator (eg. `a?!=b`)
    ?>     Array/Any Greater than operator (eg. `a?>b`)
    ?>=    Array/Any Greater than or equal operator (eg. `a?>=b`)
    ?<     Array/Any Less than or equal operator (eg. `a?<b`)
    ?<=    Array/Any Less than or equal operator (eg. `a?<=b`)
    ?~     Array/Any Like/Contains operator (eg. `a?~b`)
    ?!~    Array/Any NOT Like/Contains operator (eg. `a?!~b`)