mirror of
https://github.com/dlang/phobos.git
synced 2025-05-01 07:30:33 +03:00
TypeTuple -> MetaList inside Phobos
This commit is contained in:
parent
73f773838d
commit
82f54a38d3
42 changed files with 615 additions and 613 deletions
|
@ -736,7 +736,7 @@ unittest
|
|||
{
|
||||
import std.algorithm.iteration : filter;
|
||||
import std.traits : hasElaborateAssign;
|
||||
import std.meta : TypeTuple;
|
||||
import std.meta : MetaList;
|
||||
|
||||
debug(std_algorithm) scope(success)
|
||||
writeln("unittest @", __FILE__, ":", __LINE__, " done.");
|
||||
|
@ -787,7 +787,7 @@ unittest
|
|||
assert (!typeid(S3).init().ptr);
|
||||
assert ( typeid(S4).init().ptr);
|
||||
|
||||
foreach(S; TypeTuple!(S1, S2, S3, S4))
|
||||
foreach(S; MetaList!(S1, S2, S3, S4))
|
||||
{
|
||||
//initializeAll
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue