(b []byte)
| 727 | } |
| 728 | |
| 729 | func hasTruePrefix(b []byte) bool { |
| 730 | return len(b) >= 4 && string(b[:4]) == "true" |
| 731 | } |
| 732 | |
| 733 | func hasFalsePrefix(b []byte) bool { |
| 734 | return len(b) >= 5 && string(b[:5]) == "false" |
no outgoing calls
searching dependent graphs…