()
| 223 | * @since 0.24.0 |
| 224 | */ |
| 225 | export const array = <A>(): Semigroup<ReadonlyArray<A>> => make((self, that) => self.concat(that)) |
| 226 | |
| 227 | /** |
| 228 | * This function creates and returns a new `Semigroup` for a struct of values based on the given `Semigroup`s for each property in the struct. |