/** * @file Container.ts * @author Gage Sorrell * @copyright (c) 2026 Gage Sorrell * @license MIT */ import type { Result } from "./Container.Types.ts"; import type { Unsafe } from "./Container.Unsafe.Types.ts"; /** * The symmetric difference of two {@link IterableContainer | iterable containers}. * * @param Left - The left {@link IterableContainer | iterable container} operand. * @param Right - The right {@link IterableContainer | iterable container} operand. * @returns {Result} The {@link Result | result} of the operation. */ export declare function SymmetricDifference(Left: LeftType, Right: RightType): Result; //# sourceMappingURL=Container.d.ts.map