Skip to content

v0.6.3

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 20 Feb 04:27
f45fb68

FixedPointDecimals v0.6.3

Diff since v0.6.2

New Library functions

  • FixedPointDecimals.floor_with_overflow(x::FD)::Tuple{FD,Bool}
    
  • FixedPointDecimals.ceil_with_overflow(x::FD)::Tuple{FD,Bool}
    
  • FixedPointDecimals.round_with_overflow(x::FD, [rounding_mode])::Tuple{FD,Bool}
    

Merged pull requests:

  • Remove one of the redundant round definitions; add test coverage (#113) (@NHDaly)
  • Add round_/ceil_/floor_with_overflow (#114) (@mbarbar)
  • Add missing docstring for round_with_overflow (#115) (@NHDaly)