--- title: collections.SymDiff description: Returns the symmetric difference of two collections. categories: [] keywords: [] action: aliases: [symdiff] returnType: any signatures: [COLLECTION | collections.SymDiff COLLECTION] related: - collections.Complement - collections.Intersect - collections.SymDiff - collections.Union aliases: [/functions/symdiff] --- Example: ```go-html-template {{ slice 1 2 3 | symdiff (slice 3 4) }} → [1 2 4] ``` Also see .