summary refs log tree commit diff stats
path: root/changelog.md
diff options
context:
space:
mode:
authorKoki Fushimi <paalon1936@gmail.com>2018-06-02 00:19:25 +0900
committerVarriount <Varriount@users.noreply.github.com>2018-06-01 11:19:25 -0400
commit3027ca292c3fbdb5387d0b8834c7e3dc960df75d (patch)
treeebc28d12e9bfe76e573d308ee7a22411c7c963cd /changelog.md
parent829f89d6491302072ec1b1153d34dc07361f9fbb (diff)
downloadNim-3027ca292c3fbdb5387d0b8834c7e3dc960df75d.tar.gz
Support `div`, `mod`, floorDiv and floorMod for Rationals (#7918)
* Support `div`, `mod`, floorDiv and floorMod for Ratinoals.

* Bug fix and add tests.

* Update changelog
Diffstat (limited to 'changelog.md')
-rw-r--r--changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md
index 2bbfd01f6..514bfbaca 100644
--- a/changelog.md
+++ b/changelog.md
@@ -64,6 +64,7 @@
 - Added inverse hyperbolic functions, ``math.arcsinh``, ``math.arccosh`` and ``math.arctanh`` procs.
 - Added cotangent, secant and cosecant procs ``math.cot``, ``math.sec`` and ``math.csc``; and their hyperbolic, inverse and inverse hyperbolic functions, ``math.coth``, ``math.sech``, ``math.csch``, ``math.arccot``, ``math.arcsec``, ``math.arccsc``, ``math.arccoth``, ``math.arcsech`` and ``math.arccsch`` procs.
 - Added the procs ``math.floorMod`` and ``math.floorDiv`` for floor based integer division.
+- Added the procs ``rationals.`div```, ``rationals.`mod```, ``rationals.floorDiv`` and ``rationals.floorMod`` for rationals.
 
 ### Library changes