(docs: Iterable<Doc.Doc<A>>)
| 368 | |
| 369 | /** @internal */ |
| 370 | export const vsep = <A>(docs: Iterable<Doc.Doc<A>>): Doc.Doc<A> => |
| 371 | concatWith(docs, (left, right) => catWithLine(left, right)) |
| 372 | |
| 373 | /** @internal */ |
| 374 | export const fillSep = <A>(docs: Iterable<Doc.Doc<A>>): Doc.Doc<A> => |
no outgoing calls
no test coverage detected
searching dependent graphs…