-
Notifications
You must be signed in to change notification settings - Fork 421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/colang march release #414
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! 👍
"less_than": _less_than_operator, | ||
"equal_less_than": _equal_or_less_than_operator, | ||
"greater_than": _greater_than_operator, | ||
"equal_greater_than": _equal_or_greater_than_operator, | ||
"not_equal_to": _not_equal_to_operator, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these still needed, now that we can use these directly in expressions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, for now its for event matching based on inequalities for numbers:
match Event(number = less_than(3))
Ideally we could extend the parsing to support:
match Event(number < 3)
Many Colang 2.x features and improvements