type fmt.State
35 uses
fmt (current package)
print.go#L38: type State interface {
print.go#L54: Format(f State, verb rune)
golang.org/x/xerrors
adaptor.go#L17: func FormatError(f Formatter, s fmt.State, verb rune) {
adaptor.go#L129: fmt.State
errors.go#L27: func (e *errorString) Format(s fmt.State, v rune) { FormatError(e, s, v) }
fmt.go#L159: func (e *noWrapError) Format(s fmt.State, v rune) { FormatError(e, s, v) }
fmt.go#L177: func (e *wrapError) Format(s fmt.State, v rune) { FormatError(e, s, v) }
google.golang.org/protobuf/internal/descfmt
stringer.go#L25: func FormatList(s fmt.State, r rune, vs list) {
stringer.go#L117: func FormatDesc(s fmt.State, r rune, t pref.Descriptor) {
google.golang.org/protobuf/internal/filedesc
desc.go#L82: func (fd *File) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, fd) }
desc.go#L160: func (ed *Enum) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, ed) }
desc.go#L174: func (ed *EnumValue) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, ed) }
desc.go#L256: func (md *Message) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, md) }
desc.go#L332: func (fd *Field) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, fd) }
desc.go#L359: func (od *Oneof) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, od) }
desc.go#L414: func (xd *Extension) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, xd) }
desc.go#L454: func (sd *Service) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, sd) }
desc.go#L472: func (md *Method) Format(s fmt.State, r rune) { descfmt.FormatDesc(s, r, md) }
desc_list.go#L24: func (p *FileImports) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
desc_list.go#L36: func (p *Names) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
desc_list.go#L88: func (p *EnumRanges) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
desc_list.go#L150: func (p *FieldRanges) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
desc_list.go#L240: func (p *FieldNumbers) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
desc_list.go#L256: func (p *OneofFields) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
desc_list_gen.go#L36: func (p *Enums) Format(s fmt.State, r rune) {
desc_list_gen.go#L80: func (p *EnumValues) Format(s fmt.State, r rune) {
desc_list_gen.go#L121: func (p *Messages) Format(s fmt.State, r rune) {
desc_list_gen.go#L172: func (p *Fields) Format(s fmt.State, r rune) {
desc_list_gen.go#L217: func (p *Oneofs) Format(s fmt.State, r rune) {
desc_list_gen.go#L254: func (p *Extensions) Format(s fmt.State, r rune) {
desc_list_gen.go#L291: func (p *Services) Format(s fmt.State, r rune) {
desc_list_gen.go#L328: func (p *Methods) Format(s fmt.State, r rune) {
math/big
ftoa.go#L465: func (x *Float) Format(s fmt.State, format rune) {
intconv.go#L44: func writeMultiple(s fmt.State, text string, count int) {
intconv.go#L67: func (x *Int) Format(s fmt.State, ch rune) {
 |
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. |