From 37aa552c0ce63b77b85e31dfa2ae8f65b5c6fdfd Mon Sep 17 00:00:00 2001 From: Inkrementator <70717315+Inkrementator@users.noreply.github.com> Date: Fri, 7 Nov 2025 14:43:02 +0100 Subject: [PATCH] Doc: setDifference and setSymmetricDifference only work on 2 ranges --- std/algorithm/setops.d | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/std/algorithm/setops.d b/std/algorithm/setops.d index 363bd16a0f9..10873a7cabc 100644 --- a/std/algorithm/setops.d +++ b/std/algorithm/setops.d @@ -26,12 +26,11 @@ $(T2 multiwayMerge, $(T2 multiwayUnion, Computes the union of a range of sorted ranges.) $(T2 setDifference, - Lazily computes the set difference of two or more sorted ranges.) + Lazily computes the set difference of two sorted ranges.) $(T2 setIntersection, Lazily computes the intersection of two or more sorted ranges.) $(T2 setSymmetricDifference, - Lazily computes the symmetric set difference of two or more sorted - ranges.) + Lazily computes the symmetric set difference of two sorted ranges.) ) Copyright: Andrei Alexandrescu 2008-.