diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-07-02 17:49:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-02 17:49:43 +0200 |
commit | 97b59506d6652f56e8680735884aa7b4029f0b4d (patch) | |
tree | c1423ae6fc6ee4f2291bb1e4e2be02b99fddb007 /web/news | |
parent | a9d86d16abb49b1613d6b05e4aeb3ce31b34b5b0 (diff) | |
parent | ff85ef456ad3d538a6cef1aad477b69a8e98eb0e (diff) | |
download | Nim-97b59506d6652f56e8680735884aa7b4029f0b4d.tar.gz |
Merge pull request #4389 from jyapayne/add_unicode_procs
Add unicode procs
Diffstat (limited to 'web/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`` |