Skip to content

Commit

Permalink
Add Params, Returns, See_also, to setSymmetricDifference.
Browse files Browse the repository at this point in the history
  • Loading branch information
H. S. Teoh committed Sep 5, 2015
1 parent a7cafe1 commit a86d838
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions std/algorithm/setops.d
Expand Up @@ -1117,6 +1117,16 @@ ranges must have a common type.
If both arguments are ranges of L-values of the same type then
$(D SetSymmetricDifference) will also be a range of L-values of
that type.
Params:
less = Predicate the given ranges are sorted by.
r1 = The first range.
r2 = The second range.
Returns:
A range of the symmetric difference between `r1` and `r2`.
See_also: $(LREF setDifference)
*/
struct SetSymmetricDifference(alias less = "a < b", R1, R2)
if (isInputRange!(R1) && isInputRange!(R2))
Expand Down

0 comments on commit a86d838

Please sign in to comment.