|
CGAL 5.1 - STL Extensions for CGAL
|
#include <CGAL/Twotuple.h>
The Twotuple class stores a homogeneous (same type) pair of objects of type T. A Twotuple is much like a container, in that it "owns" its elements. It is not actually a model of container, though, because it does not support the standard methods (such as iterators) for accessing the elements of a container.
| T | must be Assignable. |
Types | |
| typedef T | value_type |
Variables | |
| T | e0 |
| first element More... | |
| T | e1 |
| second element More... | |
Creation | |
| Twotuple () | |
introduces a Twotuple using the default constructor of the elements. More... | |
| Twotuple (T x, T y) | |
constructs a Twotuple such that e0 is constructed from x and e1 is constructed from y. More... | |
| typedef T CGAL::Twotuple< T >::value_type |
| CGAL::Twotuple< T >::Twotuple | ( | ) |
introduces a Twotuple using the default constructor of the elements.
| CGAL::Twotuple< T >::Twotuple | ( | T | x, |
| T | y | ||
| ) |
constructs a Twotuple such that e0 is constructed from x and e1 is constructed from y.
| T CGAL::Twotuple< T >::e0 |
first element
| T CGAL::Twotuple< T >::e1 |
second element