digitalmars.D.learn - name enum vs static named enum
- Arjan (9/9) Nov 07 2020 What is the usage of `static` in this? :
- Imperatorn (2/11) Nov 07 2020 It's redundant
What is the usage of `static` in this? :
```
static enum Status
{
NONE,
BUSY,
...
}
```
Nov 07 2020
On Saturday, 7 November 2020 at 22:12:12 UTC, Arjan wrote:
What is the usage of `static` in this? :
```
static enum Status
{
NONE,
BUSY,
...
}
```
It's redundant
Nov 07 2020








Imperatorn <johan_forsberg_86 hotmail.com>