(c byte)
| 64 | } |
| 65 | |
| 66 | func IsFixedArray(c byte) bool { |
| 67 | return c >= FixedArrayLow && c <= FixedArrayHigh |
| 68 | } |
| 69 | |
| 70 | func IsFixedString(c byte) bool { |
| 71 | return c >= FixedStrLow && c <= FixedStrHigh |
no outgoing calls
no test coverage detected
searching dependent graphs…