Skip to content
Merged
Prev Previous commit
Next Next commit
[RF] Add reverse iterators to RooAbsCollection.
  • Loading branch information
hageboeck committed May 5, 2020
commit f6f09aa211ea61a0b479d4a562a562b70102218a
8 changes: 8 additions & 0 deletions roofit/roofitcore/inc/RooAbsCollection.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,14 @@ class RooAbsCollection : public TObject, public RooPrintable {
return _list.end();
}

Storage_t::const_reverse_iterator rbegin() const {
return _list.rbegin();
}

Storage_t::const_reverse_iterator rend() const {
return _list.rend();
}

Storage_t::size_type size() const {
return _list.size();
}
Expand Down