You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+131-143
Original file line number
Diff line number
Diff line change
@@ -40,16 +40,16 @@ import asdf;
40
40
41
41
struct Simple
42
42
{
43
-
string name;
44
-
ulong level;
43
+
string name;
44
+
ulong level;
45
45
}
46
46
47
47
void main()
48
48
{
49
-
auto o = Simple("asdf", 42);
50
-
string data = `{"name":"asdf","level":42}`;
51
-
assert(o.serializeToJson() == data);
52
-
assert(data.deserialize!Simple == o);
49
+
auto o = Simple("asdf", 42);
50
+
string data = `{"name":"asdf","level":42}`;
51
+
assert(o.serializeToJson() == data);
52
+
assert(data.deserialize!Simple == o);
53
53
}
54
54
```
55
55
#### Documentation
@@ -77,12 +77,12 @@ Now you need to edit the `dub.json` add `asdf` as dependency and set its targetT
77
77
(dub.json)
78
78
```json
79
79
{
80
-
...
81
-
"dependencies": {
82
-
"asdf": "~><current-version>"
83
-
},
84
-
"targetType": "executable",
85
-
"dflags-ldc": ["-mcpu=native"]
80
+
...
81
+
"dependencies": {
82
+
"asdf": "~><current-version>"
83
+
},
84
+
"targetType": "executable",
85
+
"dflags-ldc": ["-mcpu=native"]
86
86
}
87
87
```
88
88
@@ -116,7 +116,6 @@ For example, `-mattr=+sse4.2`. ASDF has specialized code for
116
116
|`@serdeKeys("bar_common", "bar")`| tries to read the data from either property. saves it to the first one |
117
117
|`@serdeKeysIn("a", "b")`| tries to read the data from `a`, then `b`. last one occuring in the json wins |
118
118
|`@serdeKeyOut("a")`| writes it to `a`|
119
-
|`@serializationMultiKeysIn(["a", "b", "c"])`| tries to get the data from a sub object. this has not optimal performance yet if you are using more than 1 serializationMultiKeysIn in an object |
120
119
|`@serdeIgnore`| ignore this property completely |
121
120
|`@serdeIgnoreIn`| don't read this property |
122
121
|`@serdeIgnoreOut`| don't write this property |
@@ -125,8 +124,8 @@ For example, `-mattr=+sse4.2`. ASDF has specialized code for
125
124
|`@serdeProxy!string`| call to!string |
126
125
|`@serdeTransformIn!fin`| call function `fin` to transform the data |
127
126
|`@serdeTransformOut!fout`| run function `fout` on serialization, different notation |
128
-
|`@serdeFlexible`|be flexible on the datatype on reading, e.g. read longs that are wrapped as strings|
129
-
|`@serdeRequired`|Force deserialiser to throw AsdfException if field was not found in the input. |
127
+
|`@serdeAllowMultiple`|Allows deserialiser to serialize multiple keys for the same object member input.|
128
+
|`@serdeOptional`|Allows deserialiser to to skip member desrization of no keys corresponding keys input. |
130
129
131
130
132
131
Please also look into the Docs or Unittest for concrete examples!
@@ -140,23 +139,23 @@ import asdf;
140
139
141
140
void main()
142
141
{
143
-
auto target = Asdf("red");
144
-
File("input.jsonl")
145
-
// Use at least 4096 bytes for real world apps
146
-
.byChunk(4096)
147
-
// 32 is minimum size for internal buffer. Buffer can be reallocated to get more memory.
0 commit comments