I am working on using boost C++ libraries for my next project and the documentation says that it is a header only library.
Most Boost libraries are header-only: they consist entirely of header files containing templates and inline functions, and require no separately-compiled library binaries or special treatment when linking.
So my question is does it mean I do not need to link the library for these boost libraries and including the header is the only requirement ?
what are header only libraries and how are they different from the standard libraries that require building and linking to the binary ?