mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
Remove obsolete TypeTuple references
Replace following names: std.typetuple -> std.meta TypeTuple -> AliasSeq ParameterTypeTuple -> Parameters FieldTypeTuple -> Fields std.traits requires more work than search/replace and is left unchanged.
This commit is contained in:
parent
8d9d606ef8
commit
d698887729
48 changed files with 643 additions and 645 deletions
|
@ -2285,14 +2285,14 @@ unittest
|
|||
|
||||
unittest
|
||||
{
|
||||
import std.meta;
|
||||
import std.range;
|
||||
import std.typetuple;
|
||||
{
|
||||
import std.conv : to;
|
||||
|
||||
string asciiCharString = to!string(iota(0, 128, 1));
|
||||
|
||||
alias Types = TypeTuple!(string, Latin1String, Latin2String, AsciiString, Windows1250String, Windows1252String, dstring, wstring);
|
||||
alias Types = AliasSeq!(string, Latin1String, Latin2String, AsciiString, Windows1250String, Windows1252String, dstring, wstring);
|
||||
foreach(S; Types)
|
||||
foreach(D; Types)
|
||||
{
|
||||
|
@ -2307,7 +2307,7 @@ unittest
|
|||
}
|
||||
{
|
||||
string czechChars = "Příliš žluťoučký kůň úpěl ďábelské ódy.";
|
||||
alias Types = TypeTuple!(string, dstring, wstring);
|
||||
alias Types = AliasSeq!(string, dstring, wstring);
|
||||
foreach(S; Types)
|
||||
foreach(D; Types)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue