CGAL::Sixtuple<T>

Definition

The Sixtuple<T> class stores a homogeneous (same type) sixtuple of objects of type T. A Sixtuple<T> 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.

#include <CGAL/Sixtuple.h>

Requirements

T must be Assignable.

Types

typedef T value_type;

Variables

T e0; first element
T e1; second element
T e2; third element
T e3; fourth element
T e4; fifth element
T e5; sixth element

Creation

Sixtuple<T> t;
introduces a Sixtuple<T> using the default constructor of the elements.


Sixtuple<T> t ( T x, T y, T z, T t, T u, T v);
constructs a Sixtuple<T> such that e0 is constructed from x, e1 from y, e2 from z, e3 from t, e4 from u and e5 from v.