Manual fixup

This commit is contained in:
Sebastian Wilzbach 2017-12-29 01:48:45 +01:00
parent fc0c29f3a2
commit 8227e00cd9
2 changed files with 0 additions and 8 deletions

View file

@ -1477,11 +1477,6 @@ searched in.
needle = The element searched for.
Constraints:
`isInputRange!InputRange && is(typeof(binaryFun!pred(haystack.front, needle$D(
: bool)))
Returns:
`haystack` advanced such that the front element is the one searched for;

View file

@ -1440,9 +1440,6 @@ private template validPredicates(E, less...)
}
/**
`auto multiSort(Range)(Range r$D(
if (validPredicates!(ElementType!Range, less));)
Sorts a range by multiple keys. The call $(D multiSort!("a.id < b.id",
"a.date > b.date")(r)) sorts the range `r` by `id` ascending,
and sorts elements that have the same `id` by `date`