@@ -17,6 +17,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
1717 NotEqualsKind : decodeNotEquals [int32 ],
1818 ErrorHandlerKind : decodeErrorHandler ,
1919 TimeAccumulationKind : decodeTimeAccumulation [int32 ],
20+ 7 : decodeErrorHandler ,
2021 },
2122 FloatType : {
2223 BelowKind : decodeBelow [float32 ],
@@ -26,6 +27,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
2627 NotEqualsKind : decodeNotEquals [float32 ],
2728 ErrorHandlerKind : decodeErrorHandler ,
2829 TimeAccumulationKind : decodeTimeAccumulation [float32 ],
30+ 7 : decodeErrorHandler ,
2931 },
3032 DoubleType : {
3133 BelowKind : decodeBelow [float64 ],
@@ -35,6 +37,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
3537 NotEqualsKind : decodeNotEquals [float64 ],
3638 ErrorHandlerKind : decodeErrorHandler ,
3739 TimeAccumulationKind : decodeTimeAccumulation [float64 ],
40+ 7 : decodeErrorHandler ,
3841 },
3942 CharType : {
4043 BelowKind : decodeBelow [byte ],
@@ -44,6 +47,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
4447 NotEqualsKind : decodeNotEquals [byte ],
4548 ErrorHandlerKind : decodeErrorHandler ,
4649 TimeAccumulationKind : decodeTimeAccumulation [byte ],
50+ 7 : decodeErrorHandler ,
4751 },
4852 BoolType : {
4953 BelowKind : decodeBelow [bool ],
@@ -53,6 +57,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
5357 NotEqualsKind : decodeNotEquals [bool ],
5458 ErrorHandlerKind : decodeErrorHandler ,
5559 TimeAccumulationKind : decodeTimeAccumulation [bool ],
60+ 7 : decodeErrorHandler ,
5661 },
5762 ShortType : {
5863 BelowKind : decodeBelow [int16 ],
@@ -62,6 +67,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
6267 NotEqualsKind : decodeNotEquals [int16 ],
6368 ErrorHandlerKind : decodeErrorHandler ,
6469 TimeAccumulationKind : decodeTimeAccumulation [int16 ],
70+ 7 : decodeErrorHandler ,
6571 },
6672 LongType : {
6773 BelowKind : decodeBelow [int64 ],
@@ -71,6 +77,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
7177 NotEqualsKind : decodeNotEquals [int64 ],
7278 ErrorHandlerKind : decodeErrorHandler ,
7379 TimeAccumulationKind : decodeTimeAccumulation [int64 ],
80+ 7 : decodeErrorHandler ,
7481 },
7582 Uint8Type : {
7683 BelowKind : decodeBelow [uint8 ],
@@ -80,6 +87,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
8087 NotEqualsKind : decodeNotEquals [uint8 ],
8188 ErrorHandlerKind : decodeErrorHandler ,
8289 TimeAccumulationKind : decodeTimeAccumulation [uint8 ],
90+ 7 : decodeErrorHandler ,
8391 },
8492 Uint16Type : {
8593 BelowKind : decodeBelow [uint16 ],
@@ -89,6 +97,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
8997 NotEqualsKind : decodeNotEquals [uint16 ],
9098 ErrorHandlerKind : decodeErrorHandler ,
9199 TimeAccumulationKind : decodeTimeAccumulation [uint16 ],
100+ 7 : decodeErrorHandler ,
92101 },
93102 Uint32Type : {
94103 BelowKind : decodeBelow [uint32 ],
@@ -98,6 +107,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
98107 NotEqualsKind : decodeNotEquals [uint32 ],
99108 ErrorHandlerKind : decodeErrorHandler ,
100109 TimeAccumulationKind : decodeTimeAccumulation [uint32 ],
110+ 7 : decodeErrorHandler ,
101111 },
102112 Uint64Type : {
103113 BelowKind : decodeBelow [uint64 ],
@@ -107,6 +117,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
107117 NotEqualsKind : decodeNotEquals [uint64 ],
108118 ErrorHandlerKind : decodeErrorHandler ,
109119 TimeAccumulationKind : decodeTimeAccumulation [uint64 ],
120+ 7 : decodeErrorHandler ,
110121 },
111122 Int8Type : {
112123 BelowKind : decodeBelow [int8 ],
@@ -116,6 +127,7 @@ var decodingMatrix = map[Type]map[Kind]func(io.Reader, binary.ByteOrder) (Data,
116127 NotEqualsKind : decodeNotEquals [int8 ],
117128 ErrorHandlerKind : decodeErrorHandler ,
118129 TimeAccumulationKind : decodeTimeAccumulation [int8 ],
130+ 7 : decodeErrorHandler ,
119131 },
120132}
121133
0 commit comments