(c byte)
| 56 | ) |
| 57 | |
| 58 | func IsFixedNum(c byte) bool { |
| 59 | return c <= PosFixedNumHigh || c >= NegFixedNumLow |
| 60 | } |
| 61 | |
| 62 | func IsFixedMap(c byte) bool { |
| 63 | return c >= FixedMapLow && c <= FixedMapHigh |
no outgoing calls
no test coverage detected
searching dependent graphs…