Modulus/Remainder function for non-integers

允我心安 提交于 2019-12-18 05:34:29

问题


rem gives this:

Prelude> rem 9 8
1

I wanted something like this:

Prelude> nonIntRem 9.1 8
1.0999999999999996

I implemented it like this:

nonIntRem x y = x - (y * (fromIntegral $ truncate (x/y)))

My questions are:

  1. Does something like this already exist in a standard Haskell library? I'd prefer to use a standard function, and I may have missed it.
  2. If not, is there a more standard name for this function in other languages? Maybe fmod, but the behavior for negatives in this case is not like mod, but like rem. If there is no standard name, can you think of a better name for this function?
  3. It seems to work properly, but if you notice a problem with this function, I'd like to know about it.

回答1:


The function you're after is mod' from Data.Fixed.



来源:https://stackoverflow.com/questions/14027865/modulus-remainder-function-for-non-integers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!