github.com/go-git/gcfg/scanner.Scanner.ch (field)
23 uses
github.com/go-git/gcfg/scanner (current package)
scanner.go#L45: ch rune // current character
scanner.go#L61: if s.ch == '\n' {
scanner.go#L77: s.ch = r
scanner.go#L80: if s.ch == '\n' {
scanner.go#L84: s.ch = -1 // eof
scanner.go#L123: s.ch = ' '
scanner.go#L144: for s.ch != '\n' && s.ch >= 0 {
scanner.go#L160: for isLetter(s.ch) || isDigit(s.ch) || s.ch == '-' {
scanner.go#L168: ch := s.ch
scanner.go#L187: for s.ch != '"' {
scanner.go#L188: ch := s.ch
scanner.go#L223: for inQuote || s.ch >= 0 && s.ch != '\n' && s.ch != ';' && s.ch != '#' {
scanner.go#L224: ch := s.ch
scanner.go#L230: if s.ch == '\r' {
scanner.go#L234: if s.ch != '\n' {
scanner.go#L265: for isWhiteSpace(s.ch) {
scanner.go#L301: switch ch := s.ch; {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |