Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions std/container/rbtree.d
Original file line number Diff line number Diff line change
Expand Up @@ -1815,8 +1815,8 @@ assert(equal(rbt[], [5]));
test!byte();
}

import std.range.primitives : isInputRange, isSomeString, ElementType;
import std.traits : isArray;
import std.range.primitives : isInputRange, ElementType;
import std.traits : isArray, isSomeString;

/++
Convenience function for creating a $(D RedBlackTree!E) from a list of
Expand Down
3 changes: 1 addition & 2 deletions std/experimental/typecons.d
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ module std.experimental.typecons;
import std.meta; // : AliasSeq, allSatisfy;
import std.traits;

import std.typecons : Tuple, tuple, Bind, DerivedFunctionType,
isImplicitlyConvertible, mixinAll, staticIota,
import std.typecons : Tuple, tuple, Bind, DerivedFunctionType, mixinAll, staticIota,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can even remove mixinAll + staticIota entirely -> #6049

GetOverloadedMethods;

private
Expand Down
2 changes: 1 addition & 1 deletion std/regex/internal/tests.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package(std.regex):
import std.conv, std.exception, std.meta, std.range,
std.typecons, std.regex;

import std.regex.internal.parser : Escapables; // characters that need escaping
import std.uni : Escapables; // characters that need escaping

alias Sequence(int B, int E) = staticIota!(B, E);

Expand Down