Re: How to dinamically create Tuples?

2021-01-28 Thread Leonardo via Digitalmars-d-learn
On Wednesday, 27 January 2021 at 17:28:00 UTC, H. S. Teoh wrote: On Wed, Jan 27, 2021 at 05:17:18PM +, Paul Backus via Digitalmars-d-learn wrote: On Wednesday, 27 January 2021 at 17:11:52 UTC, Leonardo wrote: > Hi, I want to know if are some way to dinamically create > Tuples, with variable

Re: How to dinamically create Tuples?

2021-01-27 Thread H. S. Teoh via Digitalmars-d-learn
On Wed, Jan 27, 2021 at 05:17:18PM +, Paul Backus via Digitalmars-d-learn wrote: > On Wednesday, 27 January 2021 at 17:11:52 UTC, Leonardo wrote: > > Hi, I want to know if are some way to dinamically create Tuples, > > with variable size and types defined at runtime. Thanks. > > No. D is a st

Re: How to dinamically create Tuples?

2021-01-27 Thread Paul Backus via Digitalmars-d-learn
On Wednesday, 27 January 2021 at 17:11:52 UTC, Leonardo wrote: Hi, I want to know if are some way to dinamically create Tuples, with variable size and types defined at runtime. Thanks. No. D is a statically-typed language, so all types have to be defined at compile time.

How to dinamically create Tuples?

2021-01-27 Thread Leonardo via Digitalmars-d-learn
Hi, I want to know if are some way to dinamically create Tuples, with variable size and types defined at runtime. Thanks.