monoid and fold rearranging
This commit is contained in:
@@ -29,14 +29,20 @@ mconcat :: Monoid a => [a] -> a
|
||||
Semigroup
|
||||
---------
|
||||
|
||||
#### <>
|
||||
|
||||
```haskell
|
||||
(<>) :: Semigroup a => a -> a -> a
|
||||
```
|
||||
|
||||
#### sconcat
|
||||
|
||||
```haskell
|
||||
sconcat :: Semigroup a => NonEmpty a -> a
|
||||
```
|
||||
|
||||
#### stimes
|
||||
|
||||
```haskell
|
||||
stimes :: (Semigroup a, Integral b) => b -> a -> a
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user