Stack concats Docs with a Line between each.
(d ...Doc)
| 84 | |
| 85 | // Stack concats Docs with a Line between each. |
| 86 | func Stack(d ...Doc) Doc { |
| 87 | return Fold(ConcatLine, d...) |
| 88 | } |
| 89 | |
| 90 | // JoinGroupAligned nests joined d with divider under head. |
| 91 | func JoinGroupAligned(head, divider string, d ...Doc) Doc { |
no test coverage detected
searching dependent graphs…