(c byte)
| 60 | } |
| 61 | |
| 62 | func IsFixedMap(c byte) bool { |
| 63 | return c >= FixedMapLow && c <= FixedMapHigh |
| 64 | } |
| 65 | |
| 66 | func IsFixedArray(c byte) bool { |
| 67 | return c >= FixedArrayLow && c <= FixedArrayHigh |
no outgoing calls
no test coverage detected
searching dependent graphs…