What library does boost :: type belong to?

I was trying to solve the problem with boost::mpl::for_each

when I came across this question . The response specifies a type named boost::type

. It works well if I turn it on <boost/type.hpp>

. My question is which Boost library does it belong to? Is this documented anywhere? While this is really just a dumb blank template, I think it should have documentation somewhere if it's in the main namespace boost

.

+3


source to share


1 answer


Looking at the backing github repository <boost/type.hpp>

is in a submodule core

:

https://github.com/boostorg/core



https://github.com/boostorg/core/blob/master/include/boost/type.hpp

So, it looks like part of the Boost Core library , however, there seems to be no documentation for this particular file.

+3


source







All Articles