-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_output.json
More file actions
63 lines (63 loc) · 1.4 KB
/
Copy pathsample_output.json
File metadata and controls
63 lines (63 loc) · 1.4 KB
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
{
"bar": {
"Foo": {
"i": 123,
"f": 3.1415,
"b": false,
"str": "Foo",
"str_view": "Foo string_view",
"pair": [
456,
"pair"
],
"tup": [
789,
-1.9,
"tuple"
],
"c_array": [
-1,
-2,
-3,
-4,
-5
],
"std_array": [
1,
2,
3,
4,
5
],
"std_vector": [
1.23,
4.56,
7.89
],
"std_set": [
"Hello",
"World"
],
"std_unordered_set": [
"World",
"Hello"
],
"std_map": {
"Hello": 1,
"World": 2
},
"std_unordered_map": {
"World": false,
"Hello": true
},
"color": "Red"
},
"optional_color": "Red",
"optional_color2": null,
"default_variant": 0,
"int_or_string1": 1,
"int_or_string2": "std::string",
"string_unique_ptr_null": null,
"string_unique_ptr": "std::unique_ptr"
}
}