MCPcopy Index your code
hub / github.com/github/git-sizer / section

Struct section

sizes/output.go:84–87  ·  view source on GitHub ↗

A section of lines in the tabular output, consisting of a header and a number of bullet lines. The lines in a section can themselves be bulletized, in which case the header becomes a top-level bullet and the lines become second-level bullets.

Source from the content-addressed store, hash-verified

82// be bulletized, in which case the header becomes a top-level bullet
83// and the lines become second-level bullets.
84type section struct {
85 name string
86 contents []tableContents
87}
88
89func newSection(name string, contents ...tableContents) *section {
90 return &section{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected