#include <tuples.h>
Public Member Functions | |
| Tuple2 () | |
| Constructs a 2-tuple using default constructors. | |
| Tuple2 (const E1 &y1, const E2 &y2) | |
| Constructs a 2-tuple for given values. | |
| Tuple2 (const Tuple2< E1, E2 > &t2) | |
| Constructs a 2-tuple that is a copy of t2. | |
| const E1 & | x1 () const |
| Returns a reference the first element. | |
| const E2 & | x2 () const |
| Returns a reference the second element. | |
| E1 & | x1 () |
| Returns a reference the first element. | |
| E2 & | x2 () |
| Returns a reference the second element. | |
| void * | operator new (size_t nBytes) |
| void * | operator new (size_t, void *p) |
| void | operator delete (void *p, size_t nBytes) |
Public Attributes | |
| E1 | m_x1 |
| The first element. | |
| E2 | m_x2 |
| The second element. | |
Definition at line 67 of file tuples.h.
| ogdf::Tuple2< E1, E2 >::Tuple2 | ( | ) | [inline] |
| ogdf::Tuple2< E1, E2 >::Tuple2 | ( | const E1 & | y1, | |
| const E2 & | y2 | |||
| ) | [inline] |
| ogdf::Tuple2< E1, E2 >::Tuple2 | ( | const Tuple2< E1, E2 > & | t2 | ) | [inline] |
| const E1& ogdf::Tuple2< E1, E2 >::x1 | ( | ) | const [inline] |
| const E2& ogdf::Tuple2< E1, E2 >::x2 | ( | ) | const [inline] |
| E1& ogdf::Tuple2< E1, E2 >::x1 | ( | ) | [inline] |
| E2& ogdf::Tuple2< E1, E2 >::x2 | ( | ) | [inline] |
| void* ogdf::Tuple2< E1, E2 >::operator new | ( | size_t | nBytes | ) | [inline] |
| void* ogdf::Tuple2< E1, E2 >::operator new | ( | size_t | , | |
| void * | p | |||
| ) | [inline] |
| void ogdf::Tuple2< E1, E2 >::operator delete | ( | void * | p, | |
| size_t | nBytes | |||
| ) | [inline] |
| E1 ogdf::Tuple2< E1, E2 >::m_x1 |
| E2 ogdf::Tuple2< E1, E2 >::m_x2 |