(s []byte, j int)
| 18 | package v1 |
| 19 | |
| 20 | func scanString(s []byte, j int) (int, byte) { |
| 21 | for { |
| 22 | if j >= len(s) { |
| 23 | return j, 0 |
| 24 | } |
| 25 | |
| 26 | c := s[j] |
| 27 | j++ |
| 28 | if byteLookupTable[c]&sliceStringMask == 0 { |
| 29 | continue |
| 30 | } |
| 31 | |
| 32 | return j, c |
| 33 | } |
| 34 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…