@HDembinski Here are some examples why using `variable_t` can bring convenience.
std::is_same_v<
boost::histogram::axis::variable<double, std::string, boost::use_default>,
boost::histogram::axis::variable<double, std::string, decltype(boost::histogram::axis::option::underflow | boost::histogram::axis::option::overflow)>
>
is false,
std::is_same_v<
boost::histogram::axis::variable_t<double, std::string, boost::use_default>,
boost::histogram::axis::variable_t<double, std::string, decltype(boost::histogram::axis::option::underflow | boost::histogram::axis::option::overflow)>
>
is true;
This causes a compile error:
boost::histogram::axis::variable<double, std::string, boost::use_default> a;
boost::histogram::axis::variable<double, std::string, decltype(boost::histogram::axis::option::underflow | boost::histogram::axis::option::overflow)> b;
a = b;
This does not cause a compile error:
boost::histogram::axis::variable_t<double, std::string, boost::use_default> a;
boost::histogram::axis::variable_t<double, std::string, decltype(boost::histogram::axis::option::underflow | boost::histogram::axis::option::overflow)> b;
a = b;
In templates, you can get the meta type, options type, allocator type conveniently if template users write variable_t, not if template users write variable:
template<typename V, typename M, typename O, typename A>
void f(boost::histogram::axis::variable<V, M, O, A>)
{
std::cout << typeid(V).name() << '\n';
std::cout << typeid(M).name() << '\n';
std::cout << typeid(O).name() << '\n';
std::cout << typeid(A).name() << '\n';
}
int main(int argc, char *argv[])
{
f(boost::histogram::axis::variable<>());
//double
//struct boost::use_default
//struct boost::use_default
//class std::allocator<double>
f(boost::histogram::axis::variable_t<>());
//double
//class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >
//struct boost::histogram::axis::option::bitset<3>
//class std::allocator<double>
}
In debugger, you can not see what options a has but can see what options b has:

boost::histogram::axis::variable<> a;
boost::histogram::axis::variable_t<> b;
Originally posted by @jhcarl0814 in #372 (comment)
std::is_same_v< boost::histogram::axis::variable<double, std::string, boost::use_default>, boost::histogram::axis::variable<double, std::string, decltype(boost::histogram::axis::option::underflow | boost::histogram::axis::option::overflow)> >is
false,std::is_same_v< boost::histogram::axis::variable_t<double, std::string, boost::use_default>, boost::histogram::axis::variable_t<double, std::string, decltype(boost::histogram::axis::option::underflow | boost::histogram::axis::option::overflow)> >is
true;This causes a compile error:
This does not cause a compile error:
In templates, you can get the meta type, options type, allocator type conveniently if template users write
variable_t, not if template users writevariable:In debugger, you can not see what options

ahas but can see what optionsbhas:boost::histogram::axis::variable<> a; boost::histogram::axis::variable_t<> b;Originally posted by @jhcarl0814 in #372 (comment)