/**
* Intercalate the specified value between elements when combining.
*
* @tsplus fluent Associative intercalate
*/
export function intercalate(self: Associative, value: A): Associative {
return Associative((x, y) => self.combine(x, self.combine(value, y)))
}