JoinGroupAligned nests joined d with divider under head.
(head, divider string, d ...Doc)
| 89 | |
| 90 | // JoinGroupAligned nests joined d with divider under head. |
| 91 | func JoinGroupAligned(head, divider string, d ...Doc) Doc { |
| 92 | return AlignUnder(Text(head), Join(divider, d...)) |
| 93 | } |
| 94 | |
| 95 | // NestUnder nests nested under head. |
| 96 | func NestUnder(head, nested Doc) Doc { |
nothing calls this directly
no test coverage detected
searching dependent graphs…