-
Notifications
You must be signed in to change notification settings - Fork 80
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
feat: Support all java.lang.Math in the query language #6110
Conversation
//////////////////////////// Constants //////////////////////////// | ||
|
||
/** | ||
* The double value that is closer than any other to e, the base of the natural logarithms. |
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.
Just a nit but I think this is a tad didactic. How about just "The mathematical constant e, the base of the natural logarithm".
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.
Docs are based off of the java.lang.Math wording.
static public final double E = Math.E; | ||
|
||
/** | ||
* The double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter. |
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.
Also a nit, but likewise a tad didactic in my opinion. How about just "The mathematical constant pi".
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.
Docs are based off of the java.lang.Math wording.
Labels indicate documentation is required. Issues for documentation have been opened: Community: deephaven/deephaven-docs-community#345 |
Newly supported methods and constants:
Resolves #5995.