(c byte)
| 68 | } |
| 69 | |
| 70 | func IsFixedString(c byte) bool { |
| 71 | return c >= FixedStrLow && c <= FixedStrHigh |
| 72 | } |
| 73 | |
| 74 | func IsString(c byte) bool { |
| 75 | return IsFixedString(c) || c == Str8 || c == Str16 || c == Str32 |
no outgoing calls
no test coverage detected
searching dependent graphs…