missing import

This commit is contained in:
Adam D. Ruppe 2015-03-11 09:35:13 -04:00
parent 817bdc6871
commit c4f5e2d6d6
1 changed files with 1 additions and 0 deletions

1
dom.d
View File

@ -5783,6 +5783,7 @@ final class ElementStream {
// unbelievable.
// Don't use any of these in your own code. Instead, try to use phobos or roll your own, as I might kill these at any time.
sizediff_t indexOfBytes(immutable(ubyte)[] haystack, immutable(ubyte)[] needle) {
static import std.algorithm;
auto found = std.algorithm.find(haystack, needle);
if(found.length == 0)
return -1;