Skip to content

Commit

Permalink
libcore: de::Map iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Sep 1, 2019
1 parent 6699c0d commit 354bf21
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doomsday/libs/core/include/de/data/map.h
Expand Up @@ -43,6 +43,11 @@ class Map : public std::map<Key, Value, Compare>
using reverse_iterator = typename Base::reverse_iterator;
using const_reverse_iterator = typename Base::const_reverse_iterator;

using Base::begin;
using Base::end;
using Base::cbegin;
using Base::cend;

inline bool isEmpty() const { return Base::empty(); }
inline int sizei() const { return int(Base::size()); }

Expand Down

0 comments on commit 354bf21

Please sign in to comment.