Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

haskell - Modulus/Remainder function for non-integers

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.
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...