March 10, 2018
writeln(is(Tuple!(string, int) == struct)); // true

What is real user case where I should use Tuple instead of Struct?
March 13, 2018
On 3/10/18 9:21 AM, Suliman wrote:
> writeln(is(Tuple!(string, int) == struct)); // true

That's because Tuple is a struct.

> 
> What is real user case where I should use Tuple instead of Struct?

When you want Tuple-like behavior? i.e. using indexes to access members.

-Steve