Skip to content

string

const string: Combinable<string>

Defined in: Core/Combinable.ts:25

Combines strings by concatenation. Empty string is the neutral element.

pipe(["a", "b", "c"], Combinable.fold(Combinable.string)); // "abc"