Skip to content

AST_Graph::my_pair::my_pair

Constructors

Synopses

Declared in <src/midend/astDump/astGraph.h>

The default constructor creates first and second using their respective default constructors.

my_pair();

There is also a templated copy ctor for the my_pair class itself.

template<
    class _U1,
    class _U2,
    class _U3>
my_pair(my_pair<_U1, _U2, _U3> const& p);

Two objects may be passed to a my_pair constructor to be copied.

my_pair(
    _T1 const& a,
    _T2 const& b,
    _T3 const& c);

Created with MrDocs