func github.com/aws/aws-sdk-go/internal/ini.isNewline
10 uses
github.com/aws/aws-sdk-go/internal/ini (current package)
ini_lexer.go#L84: case isNewline(runes):
ini_lexer.go#L118: case isNewline(runes):
literal_tokens.go#L91: if i > 0 && (isNewline(b[i:]) || isWhitespace(b[i])) {
newline_token.go#L3: func isNewline(b []rune) bool {
newline_token.go#L21: if b[0] == '\r' && isNewline(b[1:]) {
newline_token.go#L25: if !isNewline([]rune(b[:i])) {
value_util.go#L132: if isNewline(b[i:]) {
value_util.go#L137: if i+2 < len(b) && !isNewline(b[i:i+2]) {
value_util.go#L139: } else if !isNewline([]rune{b[i]}) {
value_util.go#L191: if isNewline(b[i:]) {
![]() |
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. |