Hi,

What's the best (idiomatic) way of checking if a string is in a list of strings:

```d
string v = "tofind";
if (v ismemberof ["abc", "def","tofind"])
   etc();
```

Thanks,
 ian

Reply via email to