decimal icon indicating copy to clipboard operation
decimal copied to clipboard

Add round_to_nearest/3

Open chrisapa opened this issue 1 year ago • 1 comments

What do you think about adding round_to_nearest/3?

Example:

iex> Decimal.round_to_nearest("47.1", 5)
        Decimal.new("45")

iex> Decimal.round_to_nearest("47.51", 5)
        Decimal.new("50")

chrisapa avatar May 27 '23 05:05 chrisapa