Tagged Questions

11
votes
4answers
321 views

D standard library

I've decided to learn D, and I'm wondering which standard library I should use. Should I use Phobos or Tango? What are the pros and cons of each?
6
votes
4answers
237 views

What is the current status of D standard libraries?

There are two of them Phobos and Tango. As far as I know they are redundant and incompatible. Are there any plans to join them? If so, when will it happen?
4
votes
2answers
127 views

Checking in D if a string is in array?

How do I check for a string occurance in an array? I mean sure I can loop, but is there a standard function? at first I did: if(str in ["first", "second", "third"]) but it complained that in only …