summary refs log tree commit diff stats
path: root/lib/pure/marshal.nim
Commit message (Expand)AuthorAgeFilesLines
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-051-1/+0
* more replacements for the deprecated '<'Andreas Rumpf2017-10-291-1/+1
* Add marshal format warningFederico Ceratto2016-11-191-0/+1
* Add [un]marshalling examplesFederico Ceratto2016-11-191-0/+6
* Use array encoding for non-UTF-8 strings in marshal. Fixes #4779.Ruslan Mustakov2016-09-161-27/+23
* marshal now can handle binary data in stringsRuslan Mustakov2016-09-131-2/+26
* udpated the compiler and tester to use getOrDefaultAraq2015-10-131-1/+1
* Fixes example code in marshal module.Dominik Picheta2015-07-261-1/+1
* lib/pure/e-o - Dropped 'T' from typespdw2015-06-041-13/+15
* marshalling can be done at compile-timeAraq2015-04-251-21/+32
* Don't run non-test code when defined(testing)Oleh Prypin2015-04-211-1/+1
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* doc improvementsAraq2014-11-271-2/+2
* more modules updatedAraq2014-08-281-319/+319
* big renameAraq2014-08-271-5/+5
* bugfix: marshal supports unsigned numbersAraq2013-06-271-1/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* bugfix: typeinfo.extendSeqAraq2013-01-271-1/+1
* made tests green againAraq2012-08-241-1/+1
* more uint related fixesZahary Karadjov2012-06-141-111/+111
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* got rid of akPureObjectAraq2011-09-241-2/+2
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-1/+32
* code gen bugfixes; marshal.nim implementedAraq2011-06-261-0/+288
/blame/lib/system_overview.rst?h=devel&id=714c4f0d6756e4e8a9ed0858a569286fe82a28e5'>^
714c4f0d6 ^
714c4f0d6 ^





e616675c4 ^




















714c4f0d6 ^

16d81fa20 ^
714c4f0d6 ^
7c08303fa ^

714c4f0d6 ^






















314a24472 ^
714c4f0d6 ^


























7c08303fa ^
714c4f0d6 ^
7c08303fa ^

714c4f0d6 ^

























f3d57761a ^

















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