()
| 784 | |
| 785 | /** @internal */ |
| 786 | export const getSemigroup = <A>(): semigroup.Semigroup<Doc.Doc<A>> => ({ |
| 787 | combine: cat, |
| 788 | combineMany: (self, others) => cat(self, cats(others)) |
| 789 | }) |
| 790 | |
| 791 | /** @internal */ |
| 792 | export const getMonoid = <A>(): monoid.Monoid<Doc.Doc<A>> => ({ |