Comment #0 by jonathanilevi — 2020-11-17T02:55:21Z
With
```
struct X {
string toString() {
return "hi";
}
}
```
`writeln( tuple(X()) );` prints `Tuple!(X)(const(X)())` not `Tuple!(X)("hi")`.
Stringing a tuple should use the toString of its members.
Comment #1 by robert.schadek — 2024-12-01T16:37:58Z