MCPcopy Index your code
hub / github.com/vmihailenco/msgpack / IsFixedString

Function IsFixedString

msgpcode/msgpcode.go:70–72  ·  view source on GitHub ↗
(c byte)

Source from the content-addressed store, hash-verified

68}
69
70func IsFixedString(c byte) bool {
71 return c >= FixedStrLow && c <= FixedStrHigh
72}
73
74func IsString(c byte) bool {
75 return IsFixedString(c) || c == Str8 || c == Str16 || c == Str32

Callers 6

bytesLenMethod · 0.92
DecodeInterfaceMethod · 0.92
DecodeInterfaceLooseMethod · 0.92
SkipMethod · 0.92
decodeInternedStringMethod · 0.92
IsStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…