j2cl icon indicating copy to clipboard operation
j2cl copied to clipboard

Add support for Math.IEEEremainder

Open dasa opened this issue 2 years ago • 1 comments

Is your feature request related to a problem? Please describe.

Math.IEEEremainder isn't implemented and is commented as such at: https://github.com/google/j2cl/blob/master/jre/java/java/lang/Math.java#L34

Describe the solution you'd like

Add support for Math.IEEEremainder

Describe alternatives you've considered

I attempted an implementation based on this doc:

	static private double IEEEremainder(double dividend, double divisor) {
		return dividend - (divisor * Math.round(dividend / divisor));
	}

Additional context

The link above shows expected output, and there are tests for the Kotlin implementation.

dasa avatar Apr 08 '22 00:04 dasa

Thanks for the detailed report. Would you like to send a PR?

gkdn avatar Apr 08 '22 01:04 gkdn