Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DGenericCycleInfo.h310 template <typename CycleRefT, typename ChildIteratorT> struct CycleGraphTraits { struct
311 using NodeRef = CycleRefT;
313 using nodes_iterator = ChildIteratorT;
314 using ChildIteratorType = nodes_iterator;
316 static NodeRef getEntryNode(NodeRef Graph) { return Graph; } in getEntryNode()
318 static ChildIteratorType child_begin(NodeRef Ref) { in child_begin()
321 static ChildIteratorType child_end(NodeRef Ref) { return Ref->child_end(); } in child_end()