Is Boost guilty of being un-Boost-like? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:54:14Z http://stackoverflow.com/feeds/question/379306 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/379306/is-boost-guilty-of-being-un-boost-like 3 Is Boost guilty of being un-Boost-like? ApplePieIsGood 2008-12-18T21:16:40Z 2009-11-19T15:42:14Z <p>I was just reading the intro to the Boost::Spirit LL Parser framework. The preface suggests that the author and creator likes to use such parsing technology to read in program options. Doesn't Boost have its own library for program options?</p> <p>I am wondering, does the Boost committee review all the library notes for common themes and style? It seems the doc for each library have their own flavor to them.</p> <p>Small gripe for an otherwise amazing piece of software, I just found it curious.</p> http://stackoverflow.com/questions/379306/is-boost-guilty-of-being-un-boost-like/379522#379522 5 Answer by jalf for Is Boost guilty of being un-Boost-like? jalf 2008-12-18T22:21:05Z 2008-12-19T13:08:40Z <p>You're right, not all boost libraries are particularly boost-like. Spirit is a very good example of this. Part of the reason is that when it was accepted, other boost libraries were not yet accepted/sufficiently mature for Spirit to use them. (That's why there are something like 3 Boost libraries that define their <em>own</em> (incompatible) placeholder values _1, _2 and so on).</p> <p>In most of these cases, I believe they're gradually working on getting these oddities merged back together. But afaik, Spirit was added because it was such a big and impressive thing, that it's "unboostness" was forgiven. ;)</p> http://stackoverflow.com/questions/379306/is-boost-guilty-of-being-un-boost-like/606207#606207 0 Answer by MSalters for Is Boost guilty of being un-Boost-like? MSalters 2009-03-03T12:29:07Z 2009-03-03T12:29:07Z <p>There's no such thing as a Boost style committee. ISO's WG21 will spend a bit more time on common style, but even they managed to forget std::ifstream::ifstream((std::string const&amp; filename)</p> http://stackoverflow.com/questions/379306/is-boost-guilty-of-being-un-boost-like/1222391#1222391 0 Answer by jon hanson for Is Boost guilty of being un-Boost-like? jon hanson 2009-08-03T13:33:25Z 2009-08-03T13:33:25Z <p>Spirit in Boost may one day be Boost in spirit :-)</p> http://stackoverflow.com/questions/379306/is-boost-guilty-of-being-un-boost-like/1764194#1764194 0 Answer by Joel de Guzman for Is Boost guilty of being un-Boost-like? Joel de Guzman 2009-11-19T15:42:14Z 2009-11-19T15:42:14Z <p>Simply, Spirit existed before the Boost.Program-Options library. Now, I always use Boost.Program-Options instead of hand-rolling my own using Spirit.</p>