diff options
author | Artem Pelenitsyn <a.pelenitsyn@gmail.com> | 2020-12-14 17:48:39 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-02 07:32:50 -0500 |
commit | 77c4a15f5a4aea95080059af90bae2767f162a4f (patch) | |
tree | de06beac475968cd34943df6dc284955eadd1bdf /docs | |
parent | 85d899c8d319a4bf4c386df9b7964b29ac0fbd38 (diff) | |
download | haskell-77c4a15f5a4aea95080059af90bae2767f162a4f.tar.gz |
base: add Numeric.{readBin, showBin} (fix #19036)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/9.2.1-notes.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/users_guide/9.2.1-notes.rst b/docs/users_guide/9.2.1-notes.rst index e46019848d..4de092a525 100644 --- a/docs/users_guide/9.2.1-notes.rst +++ b/docs/users_guide/9.2.1-notes.rst @@ -137,3 +137,6 @@ Compiler ``Natural``. As a consequence, one must enable ``TypeSynonymInstances`` in order to define instances for ``Nat``. + The ``Numeric`` module recieves ``showBin`` and ``readBin`` to show and + read integer numbers in binary. + |