func bytes.HasSuffix
9 uses
bytes (current package)
bytes.go#L566: func HasSuffix(s, suffix []byte) bool {
bytes.go#L847: if HasSuffix(s, suffix) {
bytes.go#L1392: if !HasSuffix(s, suffix) {
encoding/pem
pem.go#L104: if !bytes.HasSuffix(typeLine, pemEndOfLine) {
pem.go#L161: !bytes.HasSuffix(endTrailer, pemEndOfLine) {
mime/quotedprintable
reader.go#L90: hasLF := bytes.HasSuffix(r.line, lf)
reader.go#L91: hasCR := bytes.HasSuffix(r.line, crlf)
reader.go#L94: if bytes.HasSuffix(r.line, softSuffix) {
net/http
transfer.go#L893: if bytes.HasSuffix(buf, doubleCRLF) {
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |