(a: A)
| 63 | * @since 0.24.0 |
| 64 | */ |
| 65 | export const constant = <A>(a: A): Semigroup<A> => make(() => a, () => a) |
| 66 | |
| 67 | /** |
| 68 | * The dual of a `Semigroup`, obtained by flipping the arguments of `combine`. |
no test coverage detected
searching dependent graphs…