Have Stdlib and Base come closer together in recent years? If so, does it make sense to start off using Base in 2025? My initial experience using Base is not stellar because 1.) I just want to get started and not have to deal with two options, and 2.) it is unexpected to have to go to a different source (not ocaml.org) for the documentation.
It does seem like there is a regression for v0.17.2 and the docs are missing. You may want to report that issue on the base repo.
Have Stdlib and Base come closer together in recent years?
Come closer in terms of design philosophy / API design / naming conventions?
AFAIK, no one is trying to make them come closer together, and they haven’t.
If so, does it make sense to start off using Base in 2025?
My personal preference (partially informed by which projects I tend to work on, partially just an aesthetic preference, and partially not based on anything ) is to use the Stdlib (which has steadily and quietly grown over the last few years) and pull in bits of Containers as needed if I get tired of implementing too many common helpers.
That said, for the purposes of learning I don’t think there is anything lost in either path, as i find it’s no trouble to work in projects oriented around Base when needed, and I think going the other way would be just as easy.