func bytes.HasSuffix
12 uses
bytes (current package)
bytes.go#L542: func HasSuffix(s, suffix []byte) bool {
bytes.go#L808: if HasSuffix(s, suffix) {
encoding/pem
pem.go#L99: if !bytes.HasSuffix(typeLine, pemEndOfLine) {
pem.go#L157: !bytes.HasSuffix(endTrailer, pemEndOfLine) {
github.com/go-git/go-git/v5/plumbing/protocol/packp
advrefs_decode.go#L227: if bytes.HasSuffix(p.line, peeled) {
github.com/yuin/goldmark/renderer/html
html.go#L478: if bytes.HasSuffix(value, []byte("\n")) {
golang.org/x/oauth2/jws
jws.go#L85: if !bytes.HasSuffix(b, []byte{'}'}) {
golang.org/x/tools/txtar
archive.go#L124: if !bytes.HasSuffix(data, markerEnd) {
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#L896: if bytes.HasSuffix(buf, doubleCRLF) {
 |
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. |