From ff85ef456ad3d538a6cef1aad477b69a8e98eb0e Mon Sep 17 00:00:00 2001 From: Joey Payne Date: Tue, 28 Jun 2016 17:36:00 -0600 Subject: Add new unicode procs to the news --- web/news/version_0_15_released.rst | 6 ++++-- 1 file 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`` -- cgit 1.4.1-2-gfad0 ang@tilde.institute>
summary refs log tree commit diff stats
path: root/compiler/tccgen.nim
blob: 9ee8516c473980dc1410acdeb8725dfa39727c96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89