import { AndThenHashSetPatch } from "@tsplus/stdlib/collections/HashSet/patch/definition" /** * Combines two set patches to produce a new set patch that describes * applying their changes sequentially. * * @tsplus static Differ.HashSet.Patch.Aspects combine * @tsplus pipeable Differ.HashSet.Patch combine */ export function combine(that: Differ.HashSet.Patch) { return (self: Differ.HashSet.Patch): Differ.HashSet.Patch => new AndThenHashSetPatch(self, that) }