-
-
Notifications
You must be signed in to change notification settings - Fork 908
feat: add math/base/special/lcmf
#3096
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
Conversation
@gunjjoshi I've worked on this package |
math/base/special/lcmf
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
@gunjjoshi I've done changes as requested by you |
Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Co-authored-by: Gunj Joshi <gunjjoshi8372@gmail.com> Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
Coverage ReportNo coverage information available. |
@gunjjoshi Resolved all issues mentioned by you. |
/stdlib merge |
@kgryte is this ready to merge ? |
v = lcmf( NaN, 10.0 ); | ||
t.strictEqual( isnanf( v ), true, 'returns NaN' ); | ||
|
||
v = lcmf( 10.0, NaN ); | ||
t.strictEqual( isnanf( v ), true, 'returns NaN' ); | ||
|
||
v = lcmf( NaN, NaN ); | ||
t.strictEqual( isnanf( v ), true, 'returns NaN' ); |
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.
Let's use:
returns exprected value
here and in functions below.
@Harsh-Mathur-1503 You'll need to address the various CI failures before this PR can be merged. |
Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com>
@Harsh-Mathur-1503 We now have the implementation of |
Thank you for working on this pull request. However, we cannot accept your contribution as the issue this pull request seeks to resolve has already been addressed in a different pull request or commit. Thank you again for your interest in stdlib, and we look forward to reviewing your future contributions. |
Resolves a part of #649.
Description
This pull request:
math/base/special/lcmf
.Related Issues
This pull request:
Questions
No.
Other
Open to reviews.
Checklist
@stdlib-js/reviewers