missing doxygen doc

This commit is contained in:
Hans Dembinski
2018-09-15 22:55:27 +02:00
parent c66cab464c
commit 5e266efb91
2 changed files with 3 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
namespace boost {
namespace histogram {
/// Fancy iterator over histogram bins with access multi-dimensional index.
template <typename Histogram>
class iterator_over
: public iterator_facade<iterator_over<Histogram>, typename Histogram::element_type,

View File

@@ -21,11 +21,13 @@ struct sample_type {
};
} // namespace detail
/// Helper function to mark argument as a weight
template <typename T>
detail::weight_type<T> weight(T&& t) {
return {t};
}
/// Helper function to mark argument as a sample
template <typename T>
detail::sample_type<T> sample(T&& t) {
return {t};