December 30, 2010 Learn » Re: discrimination of constructors with same number of parameters | |||
|---|---|---|---|
| |||
...free.fr> wrote: Yes, you are right. Typedef-like solutions need core support by the... | |||
December 30, 2010 Learn » Re: discrimination of constructors with same number of parameters | |||
|---|---|---|---|
| |||
...any kind of typedef (be it with the soon-to-be-deprecated typedef keyword or... | |||
December 30, 2010 Learn » Re: discrimination of constructors with same number of parameters | |||
|---|---|---|---|
| |||
...someone expand on the reason(s) why "typedef is definitely on the way out"? I... | |||
December 30, 2010 Learn » Re: discrimination of constructors with same number of parameters | |||
|---|---|---|---|
| |||
...T value; } typedef semantic_wrapper!(int) Position; typedef semantic_wrapper!(size_t) Count; typedef semantic... | |||
December 30, 2010 Learn » Re: discrimination of constructors with same number of parameters | |||
|---|---|---|---|
| |||
Jonathan M Davis: typedef is deprecated (because its semantics is not flexible enough and because... | |||
December 30, 2010 Learn » Re: discrimination of constructors with same number of parameters | |||
|---|---|---|---|
| |||
...creating a new type is generally overkill). typedef is definitely on the way out, so... | |||
December 30, 2010 Learn » discrimination of constructors with same number of parameters | |||
|---|---|---|---|
| |||
...Name is still string. I know about typedef, but it is not even mentionned in... | |||
December 28, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
...the original snippet should compile fine because typedef'd type isn't actually used in... | |||
December 28, 2010 Learn » Re: declaration with typedef | |||
|---|---|---|---|
| |||
...name;
int age;
}
void main() {
Human person1;
typedef Human Mankind;
Mankind person2 = person1;
}
---
This might... | |||
December 28, 2010 Issues » [Issue 5384] New: Rows foreach on alias-this matrix | |||
|---|---|---|---|
| |||
...D2 code works with DMD 2.051:
typedef int[1][1] Mat;
void main() {
Mat... | |||
Copyright © 1999-2021 by the D Language Foundation