reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/SmallSet.h
   34     : public iterator_facade_base<SmallSetIterator<T, N, C>,
   35                                   std::forward_iterator_tag, T> {
   37   using SetIterTy = typename std::set<T, C>::const_iterator;
   38   using VecIterTy = typename SmallVector<T, N>::const_iterator;
   39   using SelfTy = SmallSetIterator<T, N, C>;
  126   const T &operator*() const { return isSmall ? *VecIter : *SetIter; }