Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Private Attributes | Friends | List of all members
SVF::SlicedPAGChildIterImpl< Forward > Class Template Reference

#include <SlicedGraphs.h>

Public Types

using iterator_category = std::forward_iterator_tag
 
using value_type = SlicedPAGNodeRef
 
using difference_type = std::ptrdiff_t
 
using pointer = const SlicedPAGNodeRef *
 
using reference = SlicedPAGNodeRef
 

Public Member Functions

 SlicedPAGChildIterImpl ()=default
 
 SlicedPAGChildIterImpl (SlicedPAGEdgeIterImpl< Forward > it)
 
reference operator* () const
 
const SlicedPAGEdgeRefcurrentEdge () const
 
SlicedPAGChildIterImploperator++ ()
 
SlicedPAGChildIterImpl operator++ (int)
 

Private Attributes

SlicedPAGEdgeIterImpl< Forwarde {}
 

Friends

bool operator== (const SlicedPAGChildIterImpl &a, const SlicedPAGChildIterImpl &b)
 
bool operator!= (const SlicedPAGChildIterImpl &a, const SlicedPAGChildIterImpl &b)
 

Detailed Description

template<bool Forward>
class SVF::SlicedPAGChildIterImpl< Forward >

Definition at line 980 of file SlicedGraphs.h.

Member Typedef Documentation

◆ difference_type

template<bool Forward>
using SVF::SlicedPAGChildIterImpl< Forward >::difference_type = std::ptrdiff_t

Definition at line 985 of file SlicedGraphs.h.

◆ iterator_category

template<bool Forward>
using SVF::SlicedPAGChildIterImpl< Forward >::iterator_category = std::forward_iterator_tag

Definition at line 983 of file SlicedGraphs.h.

◆ pointer

Definition at line 986 of file SlicedGraphs.h.

◆ reference

template<bool Forward>
using SVF::SlicedPAGChildIterImpl< Forward >::reference = SlicedPAGNodeRef

Definition at line 987 of file SlicedGraphs.h.

◆ value_type

template<bool Forward>
using SVF::SlicedPAGChildIterImpl< Forward >::value_type = SlicedPAGNodeRef

Definition at line 984 of file SlicedGraphs.h.

Constructor & Destructor Documentation

◆ SlicedPAGChildIterImpl() [1/2]

template<bool Forward>
SVF::SlicedPAGChildIterImpl< Forward >::SlicedPAGChildIterImpl ( )
default

◆ SlicedPAGChildIterImpl() [2/2]

template<bool Forward>
SVF::SlicedPAGChildIterImpl< Forward >::SlicedPAGChildIterImpl ( SlicedPAGEdgeIterImpl< Forward it)
inlineexplicit

Definition at line 990 of file SlicedGraphs.h.

990: e(it) {}
SlicedPAGEdgeIterImpl< Forward > e

Member Function Documentation

◆ currentEdge()

template<bool Forward>
const SlicedPAGEdgeRef & SVF::SlicedPAGChildIterImpl< Forward >::currentEdge ( ) const
inline

Definition at line 996 of file SlicedGraphs.h.

997 {
998 return *e;
999 }

◆ operator*()

template<bool Forward>
reference SVF::SlicedPAGChildIterImpl< Forward >::operator* ( ) const
inline

Definition at line 992 of file SlicedGraphs.h.

993 {
994 return e.target();
995 }

◆ operator++() [1/2]

Definition at line 1000 of file SlicedGraphs.h.

1001 {
1002 ++e;
1003 return *this;
1004 }

◆ operator++() [2/2]

Definition at line 1005 of file SlicedGraphs.h.

1006 {
1007 SlicedPAGChildIterImpl t = *this;
1008 ++e;
1009 return t;
1010 }

Friends And Related Symbol Documentation

◆ operator!=

template<bool Forward>
bool operator!= ( const SlicedPAGChildIterImpl< Forward > &  a,
const SlicedPAGChildIterImpl< Forward > &  b 
)
friend

Definition at line 1015 of file SlicedGraphs.h.

1016 {
1017 return !(a == b);
1018 }
cJSON * a
Definition cJSON.cpp:2560
const cJSON *const b
Definition cJSON.h:255

◆ operator==

template<bool Forward>
bool operator== ( const SlicedPAGChildIterImpl< Forward > &  a,
const SlicedPAGChildIterImpl< Forward > &  b 
)
friend

Definition at line 1011 of file SlicedGraphs.h.

1012 {
1013 return a.e == b.e;
1014 }

Member Data Documentation

◆ e

Definition at line 1021 of file SlicedGraphs.h.

1021{};

The documentation for this class was generated from the following file: