(docs: Iterable<Doc.Doc<A>>)
| 349 | |
| 350 | /** @internal */ |
| 351 | export const vcat = <A>(docs: Iterable<Doc.Doc<A>>): Doc.Doc<A> => |
| 352 | concatWith(docs, (left, right) => catWithLineBreak(left, right)) |
| 353 | |
| 354 | /** @internal */ |
| 355 | export const hcat = <A>(docs: Iterable<Doc.Doc<A>>): Doc.Doc<A> => concatWith(docs, (left, right) => cat(left, right)) |
no outgoing calls
no test coverage detected
searching dependent graphs…