Associative Array, get value instead of poiter using `if (auto ..)`, possible?

ryuukk_ ryuukk.dev at gmail.com
Sat Aug 31 12:47:25 UTC 2024


```D
void main()
{
     int[string] test;

     test["hello"] = 42;

     if (auto it = "hello" in test)
     {

     }

}
```
Is there a way to get the value instead of a pointer? while 
keeping the conciseness (one line)


More information about the Digitalmars-d-learn mailing list