diff options
author | Joey Payne <jyapayne@gmail.com> | 2016-06-28 17:36:00 -0600 |
---|---|---|
committer | Joey Payne <jyapayne@gmail.com> | 2016-07-01 07:37:49 -0600 |
commit | ff85ef456ad3d538a6cef1aad477b69a8e98eb0e (patch) | |
tree | 82765458d9a3b8b1b3e60c3d9f6aa00138fcd62a | |
parent | b1ab82715e1921a0159fce73cc047ee48b9f75bf (diff) | |
download | Nim-ff85ef456ad3d538a6cef1aad477b69a8e98eb0e.tar.gz |
Add new unicode procs to the news
-rw-r--r-- | web/news/version_0_15_released.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/web/news/version_0_15_released.rst b/web/news/version_0_15_released.rst index ecda59fcd..96d9abc99 100644 --- a/web/news/version_0_15_released.rst +++ b/web/news/version_0_15_released.rst @@ -23,8 +23,10 @@ Library Additions - Added ``center`` and ``rsplit`` to ``strutils.nim`` to provide similar Python functionality for Nim's strings. -- Added ``isTitle``, ``title``, and ``swapCase`` to ``unicode.nim`` to - provide unicode aware string case manipulation. +- Added ``isTitle``, ``title``, ``swapCase``, ``isUpper``, ``toUpper``, + ``isLower``, ``toLower``, ``isAlpha``, ``isSpace``, and ``capitalize`` + to ``unicode.nim`` to provide unicode aware case manipulation and case + testing. - Added a new module ``lib/pure/strmisc.nim`` to hold uncommon string operations. Currently contains ``partition``, ``rpartition`` |