1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-06-17 00:07:49 +02:00
Files
fp-go/string/monoid.go

9 lines
157 B
Go
Raw Normal View History

package string
import (
M "github.com/ibm/fp-go/monoid"
)
// Monoid is the monoid implementing string concatenation
var Monoid = M.MakeMonoid(concat, "")