diff options
author | Pierre Le Marre <dev@wismill.eu> | 2022-10-11 16:13:34 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-10-14 07:45:43 -0400 |
commit | 43ab435afc01284c1fb7e500783703f580a55a90 (patch) | |
tree | 6035f16c362677f0bbb93d5f2058abdc61b50244 /docs | |
parent | eda6c05e65144b35de62c33d0fd5d35a417233ac (diff) | |
download | haskell-43ab435afc01284c1fb7e500783703f580a55a90.tar.gz |
Add standard Unicode case predicates isUpperCase and isLowerCase.
These predicates use the standard Unicode case properties and are more intuitive than isUpper and isLower.
Approved by CLC in https://github.com/haskell/core-libraries-committee/issues/90#issuecomment-1276649403.
Fixes #14589
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/9.6.1-notes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/users_guide/9.6.1-notes.rst b/docs/users_guide/9.6.1-notes.rst index 64d0568b30..faa8d2d8e9 100644 --- a/docs/users_guide/9.6.1-notes.rst +++ b/docs/users_guide/9.6.1-notes.rst @@ -140,6 +140,11 @@ Runtime system - Updated to `Unicode 15.0.0 <https://www.unicode.org/versions/Unicode15.0.0/>`_. +- Add standard Unicode case predicates :base-ref:`Data.Char.isUpperCase` and + :base-ref:`Data.Char.isLowerCase`. These predicates use the standard Unicode + case properties and are more intuitive than :base-ref:`Data.Char.isUpper` and + :base-ref:`Data.Char.isLower`. + ``ghc-prim`` library ~~~~~~~~~~~~~~~~~~~~ |