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

References

include/llvm/ADT/ImmutableList.h
   92     iterator& operator++() { L = L->getTail(); return *this; }
   92     iterator& operator++() { L = L->getTail(); return *this; }
   93     bool operator==(const iterator& I) const { return L == I.L; }
   93     bool operator==(const iterator& I) const { return L == I.L; }
   94     bool operator!=(const iterator& I) const { return L != I.L; }
   94     bool operator!=(const iterator& I) const { return L != I.L; }
   95     const value_type& operator*() const { return L->getHead(); }
   97       return &L->getHead();
  100     ImmutableList getList() const { return L; }