(c byte)
| 72 | } |
| 73 | |
| 74 | func IsString(c byte) bool { |
| 75 | return IsFixedString(c) || c == Str8 || c == Str16 || c == Str32 |
| 76 | } |
| 77 | |
| 78 | func IsBin(c byte) bool { |
| 79 | return c == Bin8 || c == Bin16 || c == Bin32 |
no test coverage detected
searching dependent graphs…