Henrique Mendonça | 15d9042 | 2015-06-25 22:31:41 +1000 | [diff] [blame] | 1 | struct Simple { |
| 2 | 1: string value |
| 3 | } |
| 4 | |
| 5 | struct Complex { |
| 6 | 1: Simple struct_field |
| 7 | 2: list<Simple> struct_list_field |
| 8 | 3: set<Simple> struct_set_field |
| 9 | 4: map<string,Simple> struct_map_field |
| 10 | 5: list<set<map<string,list<Simple>>>> struct_nested_containers_field |
| 11 | 6: map<string, list<map<string,Simple>> > struct_nested_containers_field2 |
Nobuaki Sukegawa | a400c69 | 2016-03-19 23:55:06 +0900 | [diff] [blame^] | 12 | 7: list<list<string>> list_of_list_field |
| 13 | 8: list<list<list<string>>> list_of_list_of_list_field |
Henrique Mendonça | 15d9042 | 2015-06-25 22:31:41 +1000 | [diff] [blame] | 14 | } |
Henrique Mendonça | 738143c | 2015-08-16 19:17:33 +1000 | [diff] [blame] | 15 | |
| 16 | struct ComplexList { |
| 17 | 1: list<Complex> struct_list_field; |
| 18 | } |