SYS-REQ-001 Find position of next character which is not whitespace reqproof:lemma nextToken_in_range func(data []byte) bool { r := nextToken(data) return r >= -1 && r < len(data) } reqproof:lemma nextToken_empty_neg func(data []byte) bool { return !(len(data) == 0) || nextToken(data)
(data []byte)
| 234 | // return true |
| 235 | // } |
| 236 | func nextToken(data []byte) int { |
| 237 | return nextTokenConfig(DefaultConfig, data) |
| 238 | } |
| 239 | |
| 240 | // SYS-REQ-115 |
| 241 | func nextTokenConfig(_ Config, data []byte) int { |