Style fix: specify/remove local imports

This commit is contained in:
Sebastian Wilzbach 2016-10-11 11:53:57 +02:00
parent 6f1690f6b1
commit 64217c8965
4 changed files with 7 additions and 9 deletions

View file

@ -639,7 +639,7 @@ if (isRandomAccessRange!Range && hasLength!Range && hasSlicing!Range)
// Loop invariant
version(unittest)
{
import std.algorithm.searching;
import std.algorithm.searching : all;
assert(r[0 .. lo].all!(x => !lt(p, x)));
assert(r[hi + 1 .. r.length].all!(x => !lt(x, p)));
}