Added missing parameter descriptions for minOutLen in BaseConversion

This commit is contained in:
Leon Etienne 2022-02-28 00:12:03 +00:00 committed by GitHub
parent fbcc0aa695
commit a41202ecef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,6 +37,7 @@ namespace Leonetienne {
//! \tparam T_Container The type of container used for the digitstring //! \tparam T_Container The type of container used for the digitstring
//! \param num The number to be converted //! \param num The number to be converted
//! \param set The desired set/base for the output to be in. Should be a listlike container (such as a string) //! \param set The desired set/base for the output to be in. Should be a listlike container (such as a string)
//! \param minOutLen The minimum output length. Setting this will result in zero-padded output (Like, 00000001 instead of 1)
//! \return `num` in base `set` //! \return `num` in base `set`
template<class T_Container> template<class T_Container>
static T_Container static T_Container
@ -48,7 +49,7 @@ namespace Leonetienne {
//! \param num A representation of a number in a listlike container (such as a string) //! \param num A representation of a number in a listlike container (such as a string)
//! \param set_in The set/base of the input //! \param set_in The set/base of the input
//! \param set_out The desired set/base to output //! \param set_out The desired set/base to output
//! \param minLen The minimum output length. Setting this will result in zero-padded output (Like, 00000001 instead of 1) //! \param minOutLen The minimum output length. Setting this will result in zero-padded output (Like, 00000001 instead of 1)
//! \return `num` in base `set_out` //! \return `num` in base `set_out`
template<class T_ContainerIn, class T_ContainerOut> template<class T_ContainerIn, class T_ContainerOut>
static T_ContainerOut static T_ContainerOut