google / escapevelocity

A subset reimplementation of Apache Velocity with a much simpler API.
Apache License 2.0
33 stars 11 forks source link

Recognize `and`, `or`, and `not` in Boolean expressions. #29

Closed copybara-service[bot] closed 1 year ago

copybara-service[bot] commented 1 year ago

Recognize and, or, and not in Boolean expressions.

These are just synonyms for &&, ||, ! respectively. Velocity allows them so we do too.

RELNOTES=The words and, or, not can be used as synonyms for &&, ||, ! respectively.