-
-
Notifications
You must be signed in to change notification settings - Fork 401
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 the rest of Math
methods
#524
Comments
Hey, I'm new, but I would like to take these. |
Sure. go for it! If you have any questions or need any assistance just ask :) |
@mr-rodgers a good example of a after we create the methods we need to register them here like |
I think we missed Math.imul(a: f64, b:f64) -> i32; |
Good catch! I'll add it to the list :) |
Do we have a guide for writing tests? |
Not really. we really should have one, but for now here is an example of how we test Also the Math tests should go in this file Hope this helps. |
Maybe this is something I can help with? |
Yes. It would be awesome to have it for newcomers to the project :) |
* add `Math.clz32` method (#524) * fix doc urls for clz32 * [#524] optimize impl for `Math.clz32` * [#524] add implementation for `Math.expm1()` * [#524] add implementation for `Math.fround()` * [#524] implement `Math.hypot()` * [#524] implement `Math.log1p()` * [#524] implement `Math.imul()` * improve `Math.clz32()` implementation * [#524] add tests for more states
Implement
Math
methods:Math.clz32()
Math.expm1()
Math.fround()
Math.hypot()
Math.log1p()
Math.imul()
The text was updated successfully, but these errors were encountered: