text/tabwriter.Writer.widths (field)
15 uses
text/tabwriter (current package)
tabwriter.go#L106: widths []int // list of column widths in runes - re-used during formatting
tabwriter.go#L143: b.widths = b.widths[0:0]
tabwriter.go#L314: if j < len(b.widths) {
tabwriter.go#L315: b.writePadding(c.width, b.widths[j], useTabs)
tabwriter.go#L323: if j < len(b.widths) {
tabwriter.go#L324: b.writePadding(c.width, b.widths[j], false)
tabwriter.go#L327: if j < len(b.widths) {
tabwriter.go#L328: b.writePadding(c.width, b.widths[j], false)
tabwriter.go#L356: column := len(b.widths)
tabwriter.go#L402: b.widths = append(b.widths, width) // push width
tabwriter.go#L404: b.widths = b.widths[0 : len(b.widths)-1] // pop width
![]() |
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. |