Skip to content
Snippets Groups Projects
Commit afe18d82 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add method Statistics::find

parent 7f4e619e
No related branches found
No related tags found
No related merge requests found
...@@ -115,6 +115,10 @@ namespace hpp { ...@@ -115,6 +115,10 @@ namespace hpp {
/// already in the set. /// already in the set.
virtual T& increment (const T& bin); virtual T& increment (const T& bin);
iterator find (const T& bin);
template < typename U > iterator find (const U& value);
/// Return an iterator pointing at the beginning of /// Return an iterator pointing at the beginning of
/// the set of bins. /// the set of bins.
const_iterator begin() const const_iterator begin() const
...@@ -162,6 +166,26 @@ namespace hpp { ...@@ -162,6 +166,26 @@ namespace hpp {
return *it; return *it;
} }
template < typename T>
typename Statistics<T>::iterator Statistics <T>::find (const T& b)
{
for (iterator it = bins_.begin ();
it != bins_.end (); it++) {
if (*it < b)
continue;
if (*it == b)
return it;
break;
}
return bins_.end ();
}
template < typename T> template < typename U >
typename Statistics<T>::iterator Statistics <T>::find (const U& v)
{
return find (T (v));
}
template < typename T > template < typename T >
size_t Statistics <T>::freq (const T& b) const size_t Statistics <T>::freq (const T& b) const
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment