April 04, 2021
How much can the D standard library replace Boost?
April 04, 2021
On Sunday, 4 April 2021 at 10:48:21 UTC, Steven Hoxville wrote:
> How much can the D standard library replace Boost?

Boost is a very large set of C++ libraries. It covers some facilities that D standard library does not, e.g. working with graphs, parser generation and localization. If you need some of this stuff in D you can find packages on dub.

However many of other facilities provided by Boost can be found in D standard library too, e.g. working with filesystem and paths, uuid, variant type, date and time, regular expressions and unicode support.