-
-
Notifications
You must be signed in to change notification settings - Fork 784
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: add C implementation for math/base/special/lcm
#2276
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.
LGTM. Thanks, @gunjjoshi!
double bn; | ||
double d; | ||
|
||
if( a == 0.0 || b == 0.0 ) { |
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.
Missing space.
} | ||
else { |
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.
No need for line break.
} | ||
else { |
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.
No need for linebreak.
/** | ||
* Computes the least common multiple (lcm). | ||
* | ||
* @private |
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.
This isn't a private API. The @private
tag should be removed.
@gunjjoshi Would you mind submitting a small follow-up PR addressing the comments above? Thanks! |
Sure, I've made a PR #2296. |
PR-URL: stdlib-js#2276 Ref: stdlib-js#649 Reviewed-by: Philipp Burckhardt <[email protected]>
Description
This pull request:
math/base/special/lcm
.Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers