Searched defs:IterableImpl (Results 1 – 1 of 1) sorted by relevance
83 struct IterableImpl { struct84 using map_ref = typename std::conditional<is_const, const Map &, Map &>::type;85 IterableImpl(map_ref map) : mMap(map) {} in IterableImpl() argument87 IteratorImpl<is_const> begin() const { in begin()91 IteratorImpl<is_const> end() const { in end()95 bool empty() const { return begin() == end(); } in empty()