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