mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 05:30:33 +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
|
@ -541,8 +541,8 @@ unittest
|
|||
result = decode("%41%42%43");
|
||||
debug(uri) writeln(result);
|
||||
|
||||
import std.typetuple : TypeTuple;
|
||||
foreach (StringType; TypeTuple!(char[], wchar[], dchar[], string, wstring, dstring))
|
||||
import std.meta : AliasSeq;
|
||||
foreach (StringType; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring))
|
||||
{
|
||||
import std.conv : to;
|
||||
StringType decoded1 = source.to!StringType;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue