summary refs log tree commit diff stats
path: root/lib/pure/strformat.nim
Commit message (Expand)AuthorAgeFilesLines
* fix #8242, fix #12586: fix 'formatFloat' with 'precision = 0' (#12592)Miran2019-11-051-3/+2
* [feature]strformat: add 2 'fmt' macros that use specified characters instead ...Tomohiro2019-10-281-14/+25
* [backport] run nimpretty on string stuffnarimiran2019-09-301-16/+21
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-2/+2
* typoAndreas Rumpf2019-09-101-1/+1
* fixes #11723Araq2019-07-151-2/+2
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-1/+1
* fixes #1192Araq2019-04-231-0/+7
* fixes #11089Araq2019-04-231-1/+7
* strformat: minor style changesAraq2019-04-231-4/+4
* fixes another regression; the behaviour of 'array' formatting was changedAraq2019-04-151-8/+0
* fixes #11012Araq2019-04-151-28/+10
* add strformat limitations section (#10982)Arne Döring2019-04-091-0/+59
* make strformat work as NimScript againAraq2019-04-061-2/+5
* Strformat symbol binding (#10927)Arne Döring2019-04-051-135/+102
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-1/+5
* New implementations of times.parse & times.format (#8094)Oscar Nihlgård2018-07-091-2/+2
* Fixes #8100 (#8101)Oscar Nihlgård2018-06-291-1/+6
* Fix strformat neg zero (#7954)skilchen2018-06-051-1/+6
* Fix strformat precision handling for strings (#7941)skilchen2018-06-041-0/+4
* fix strformat zeropadding for floats (#7934)skilchen2018-06-011-2/+20
* fixes #7749Araq2018-05-021-1/+1
* rename SomeReal to SomeFloat (#7617)Arne Döring2018-04-151-4/+4
* Improves documentation for strformat module.Dominik Picheta2018-03-011-149/+192
* fixes #7078Araq2018-01-141-111/+111
* strformat: fixes new 'fmt' templateAndreas Rumpf2018-01-131-0/+1
* strformat: introduce 'fmt' as an alias for '%'; ensure overloading resolution...Araq2018-01-121-1/+18
* rename strformat.fmt to `%` as it works better with backslash escape sequence...Araq2018-01-111-107/+107
* Add additional $ fallback to fmtOscar Nihlgård2018-01-091-1/+3
* make strformat.fmt take the same signature as strfmt.fmt in order to force an...Andreas Rumpf2018-01-081-3/+2
* Minor fixes to strformat docs (#6953)Mathias Stearn2017-12-211-3/+4
* strformat: fix the documentation examplesAraq2017-12-171-4/+4
* strformat: default for numbers is right alignmentAraq2017-12-171-10/+13
* strformat: support 'sign' as Python doesAraq2017-12-171-25/+36
* strformat: added '^' char for center alignment for Python compatAraq2017-12-171-4/+18
* added new stdlib module 'strformat'; refs #5600; refs #6507Araq2017-12-171-0/+590
aeb85f0 ^
fcc161e7 ^
8aeb85f0 ^



















fcc161e7 ^
8aeb85f0 ^

fcc161e7 ^


8aeb85f0 ^



fcc161e7 ^
8aeb85f0 ^




fcc161e7 ^
8aeb85f0 ^
fcc161e7 ^
8aeb85f0 ^





fcc161e7 ^

8aeb85f0 ^




fcc161e7 ^


8aeb85f0 ^





651fc300 ^
8aeb85f0 ^








651fc300 ^
8aeb85f0 ^


fcc161e7 ^
8aeb85f0 ^




fcc161e7 ^
8aeb85f0 ^

fcc161e7 ^
8aeb85f0 ^

fcc161e7 ^

8aeb85f0 ^























fcc161e7 ^




8aeb85f0 ^

























805d58c6 ^



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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258