()
| 790 | |
| 791 | /** @internal */ |
| 792 | export const getMonoid = <A>(): monoid.Monoid<Doc.Doc<A>> => ({ |
| 793 | empty, |
| 794 | combine: cat, |
| 795 | combineMany: (self, others) => cat(self, cats(others)), |
| 796 | combineAll: cats |
| 797 | }) |
| 798 | |
| 799 | /** @internal */ |
| 800 | export const Covariant: covariant.Covariant<Doc.Doc.TypeLambda> = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…