\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.14 - STL Extensions for CGAL
CGAL::Sixtuple< T > Class Template Reference

#include <CGAL/Sixtuple.h>

Definition

The Sixtuple class stores a homogeneous (same type) sixtuple of objects of type T.

A Sixtuple 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.

Deprecated:
This class is deprecated, and will be removed in some future CGAL release. Please use CGAL::cpp11::array instead.
Template Parameters
<tt>T</tt>must be Assignable.

Types

typedef T value_type
 

Variables

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

Creation

 Sixtuple ()
 introduces a Sixtuple using the default constructor of the elements.
 
 Sixtuple (T x, T y, T z, T t, T u, T v)
 constructs a Sixtuple such that e0 is constructed from x, e1 from y, e2 from z, e3 from t, e4 from u and e5 from v.