|
CGAL 4.7 - STL Extensions for CGAL
|
#include <CGAL/Fourtuple.h>
The Fourtuple class stores a homogeneous (same type) fourtuple of objects of type T.
A Fourtuple 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... | |
| T | e2 |
| third element More... | |
| T | e3 |
| fourth element More... | |
Creation | |
| Fourtuple () | |
introduces a Fourtuple using the default constructor of the elements. More... | |
| Fourtuple (T x, T y, T z, T t) | |
constructs a Fourtuple such that e0 is constructed from x, e1 from y, e2 from z and e3 from t. More... | |
| typedef T CGAL::Fourtuple< T >::value_type |
| CGAL::Fourtuple< T >::Fourtuple | ( | ) |
introduces a Fourtuple using the default constructor of the elements.
| CGAL::Fourtuple< T >::Fourtuple | ( | T | x, |
| T | y, | ||
| T | z, | ||
| T | t | ||
| ) |
constructs a Fourtuple such that e0 is constructed from x, e1 from y, e2 from z and e3 from t.
| T CGAL::Fourtuple< T >::e0 |
first element
| T CGAL::Fourtuple< T >::e1 |
second element
| T CGAL::Fourtuple< T >::e2 |
third element
| T CGAL::Fourtuple< T >::e3 |
fourth element