Home
last modified time | relevance | path

Searched defs:CustomPointerIterator (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/ADT/
H A DSTLExtrasTest.cpp539 struct CustomPointerIterator struct
543 using base_type =
547 explicit CustomPointerIterator(std::list<int>::iterator I) : base_type(I) {} in CustomPointerIterator() function
550 int *operator*() const { return &*base_type::wrapped(); } in operator *()