mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 23:50:31 +03:00
Use UFCS throughout
This commit is contained in:
parent
a4cd3a6542
commit
1ed73fa969
1 changed files with 1 additions and 1 deletions
|
@ -950,7 +950,7 @@ auto multiwayUnion(alias less = "a < b", RangeOfRanges)(RangeOfRanges ror)
|
||||||
{
|
{
|
||||||
import std.algorithm.iteration : uniq;
|
import std.algorithm.iteration : uniq;
|
||||||
import std.functional : not;
|
import std.functional : not;
|
||||||
return multiwayMerge!less(ror).uniq!(not!less);
|
return ror.multiwayMerge!(less).uniq!(not!less);
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue