Several parts of my library come with "convenience" functions. For example, a container class might have a function to parse information from a string. These functions are not necessarily needed (or wanted) all the time, so I'd like to put them in separate files so they can be included or left out according to the users' needs.
How should this be structured? Should I put all the "convenience" stuff in header files in a separate folder? Or perhaps it belongs in a completely separate library...?
How do big libraries (like Boost) handle this sort of thing? Or do they just avoid it altogether?