JoinGroupAligned nests joined d with divider under head.
(head, divider string, d ...Doc)
| 112 | |
| 113 | // JoinGroupAligned nests joined d with divider under head. |
| 114 | func JoinGroupAligned(head, divider string, d ...Doc) Doc { |
| 115 | return AlignUnder(Text(head), Join(divider, d...)) |
| 116 | } |
| 117 | |
| 118 | // NestUnder nests nested under head. |
| 119 | func NestUnder(head, nested Doc) Doc { |
nothing calls this directly
no test coverage detected