(b []byte)
| 731 | } |
| 732 | |
| 733 | func hasFalsePrefix(b []byte) bool { |
| 734 | return len(b) >= 5 && string(b[:5]) == "false" |
| 735 | } |
| 736 | |
| 737 | func hasPrefix(b []byte, s string) bool { |
| 738 | return len(b) >= len(s) && s == string(b[:len(s)]) |
no outgoing calls
searching dependent graphs…