Source File
textproto.go
Belonging Package
net/textproto
package textproto
import (
)
type ProtocolError string
func ( ProtocolError) () string {
return string()
}
func ( *Conn) ( string, ...interface{}) ( uint, error) {
= .Next()
.StartRequest()
= .PrintfLine(, ...)
.EndRequest()
if != nil {
return 0,
}
return , nil
}
func ( string) string {
for len() > 0 && isASCIISpace([0]) {
= [1:]
}
for len() > 0 && isASCIISpace([len()-1]) {
= [:len()-1]
}
return
}
![]() |
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. |