mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-29 19:42:12 +00:00
missing doxygen doc
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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};
|
||||
|
||||
Reference in New Issue
Block a user