std.array: clean imports

assocArray: updated doc header.

add scope import

added global import in std.array

global import std.algorithm : splitter; in std.arra;

update splitter

import typetuple

import std.algorithm

Fix split

import std.algorithm fix
This commit is contained in:
Ilya Yaroshenko 2014-11-09 16:19:57 +03:00
parent 858296f87a
commit 3fcf723aa4
2 changed files with 132 additions and 41 deletions

View file

@ -7715,7 +7715,7 @@ int cmp(alias pred = "a < b", R1, R2)(R1 r1, R2 r2) if (isSomeString!R1 && isSom
}
return 0;
}()
: () @trusted { return core.stdc.string.memcmp(r1.ptr, r2.ptr, len); }();
: () @trusted { return memcmp(r1.ptr, r2.ptr, len); }();
if (result) return result;
}
else