()
| 86 | * @since 0.24.0 |
| 87 | */ |
| 88 | export const array = <A>(): Monoid<ReadonlyArray<A>> => fromSemigroup(semigroup.array<A>(), []) |
| 89 | |
| 90 | /** |
| 91 | * This function creates and returns a new `Monoid` for a struct of values based on the given `Monoid`s for each property in the struct. |
nothing calls this directly
no test coverage detected
searching dependent graphs…