mirror of
https://github.com/dlang/phobos.git
synced 2025-05-10 22:18:03 +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
|
@ -4,8 +4,8 @@ Used with the dummy ranges for testing higher order ranges.
|
|||
*/
|
||||
module std.internal.test.dummyrange;
|
||||
|
||||
import std.meta;
|
||||
import std.typecons;
|
||||
import std.typetuple;
|
||||
import std.range.primitives;
|
||||
|
||||
enum RangeType
|
||||
|
@ -157,7 +157,7 @@ struct DummyRange(ReturnBy _r, Length _l, RangeType _rt)
|
|||
|
||||
enum dummyLength = 10;
|
||||
|
||||
alias AllDummyRanges = TypeTuple!(
|
||||
alias AllDummyRanges = AliasSeq!(
|
||||
DummyRange!(ReturnBy.Reference, Length.Yes, RangeType.Forward),
|
||||
DummyRange!(ReturnBy.Reference, Length.Yes, RangeType.Bidirectional),
|
||||
DummyRange!(ReturnBy.Reference, Length.Yes, RangeType.Random),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue