-
Notifications
You must be signed in to change notification settings - Fork 37
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
Implement more base methods #121
Conversation
Codecov Report
@@ Coverage Diff @@
## main #121 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 1 1
Lines 123 135 +12
=========================================
+ Hits 123 135 +12
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
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.
Added minor comments to the test code. The rest of the code seems fine:+1:
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!
I went through https://github.com/JuliaLang/julia/blob/v1.8.3/base/complex.jl and implemented here for
Quaternion
all overloads that are there implemented forComplex
. All of these methods resulted in aMethodError
before this PR, so this is a non-breaking change.The one overload I did not implement is
hash
, which I would need to take some more time to understand.