mirror of
https://github.com/IBM/fp-go.git
synced 2025-06-17 00:07:49 +02:00
9 lines
157 B
Go
9 lines
157 B
Go
![]() |
package string
|
||
|
|
||
|
import (
|
||
|
M "github.com/ibm/fp-go/monoid"
|
||
|
)
|
||
|
|
||
|
// Monoid is the monoid implementing string concatenation
|
||
|
var Monoid = M.MakeMonoid(concat, "")
|