Stack concats Docs with a Line between each.
(d ...Doc)
| 98 | |
| 99 | // Stack concats Docs with a Line between each. |
| 100 | func Stack(d ...Doc) Doc { |
| 101 | return Fold(ConcatLine, d...) |
| 102 | } |
| 103 | |
| 104 | // Fillwords fills lines with as many docs as will fit joined with a space or line. |
| 105 | func Fillwords(d ...Doc) Doc { |