\( \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.12 - STL Extensions for CGAL
CGAL::Triple< T1, T2, T3 > Class Template Reference

#include <CGAL/utility.h>

Definition

The Triple class is an extension of std::pair.

Triple is a heterogeneous triple: it holds one object of type T1, one of type T2, and one of type T3. A Triple 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.

CGAL::cpp11::tuple or CGAL::cpp11::array instead for new uses.

Requirements

T1, T2 and T3 must be Assignable. Additional operations have additional requirements.

Public Member Functions

template<class T1 , class T2 , class T3 >
bool operator< (Triple< T1, T2, T3 > x, Triple< T1, T2, T3 > y)
 The comparison operator. More...
 
template<class T1 , class T2 , class T3 >
bool operator== (Triple< T1, T2, T3 > x, Triple< T1, T2, T3 > y)
 The equality operator. More...
 

Types

typedef T1 first_type
 
typedef T2 second_type
 
typedef T3 third_type
 

Variables

T1 first
 first element. More...
 
T2 second
 second element. More...
 
T3 third
 third element. More...
 

Creation

 Triple ()
 introduces a triple using the default constructor of the three elements.
 
 Triple (T1 x, T2 y, T3 z)
 constructs a triple such that first is constructed from x, second is constructed from y, and third is constructed from z.
 
template<class U , class V , class W >
 Triple (U u, V v, W w)
 constructs a triple such that first is constructed from u, second is constructed from v, and third is constructed from w. More...
 
template<int i>
get ()
 Gives access to first, second or third whenever i is 0, 1 or 2, via a, potentially const, reference. More...
 

Constructor & Destructor Documentation

◆ Triple()

template<typename T1 , typename T2 , typename T3 >
template<class U , class V , class W >
CGAL::Triple< T1, T2, T3 >::Triple ( u,
v,
w 
)

constructs a triple such that first is constructed from u, second is constructed from v, and third is constructed from w.

Proper conversion operators must exist from U to T1, V to T2, and W to T3.

Member Function Documentation

◆ get()

template<typename T1 , typename T2 , typename T3 >
template<int i>
T CGAL::Triple< T1, T2, T3 >::get ( )

Gives access to first, second or third whenever i is 0, 1 or 2, via a, potentially const, reference.

Note: T stands for T1, T2 or T3 depending on i.

◆ operator
template<typename T1 , typename T2 , typename T3 >
template<class T1 , class T2 , class T3 >
bool CGAL::Triple< T1, T2, T3 >::operator< ( Triple< T1, T2, T3 >  x,
Triple< T1, T2, T3 >  y 
)

The comparison operator.

It uses lexicographic comparison: the return value is true if the first element of x is less than the first element of y, and false if the first element of y is less than the first element of x. If neither of these is the case, then it returns true if the second element of x is less than the second element of y, and false if the second element of y is less than the second element of x. If neither of these is the case, then it returns the result of comparing the third elements of x and y. This operator may only be used if T1, T2 and T3 define the comparison operator.

◆ operator==()

template<typename T1 , typename T2 , typename T3 >
template<class T1 , class T2 , class T3 >
bool CGAL::Triple< T1, T2, T3 >::operator== ( Triple< T1, T2, T3 >  x,
Triple< T1, T2, T3 >  y 
)

The equality operator.

The return value is true if and only the first elements of x and y are equal, the second elements of x and y are equal, and the third elements of x and y are equal. This operator may only be used if T1, T2 and T3 define the equality operator.

Member Data Documentation

◆ first

template<typename T1 , typename T2 , typename T3 >
T1 CGAL::Triple< T1, T2, T3 >::first

first element.

Please access it using get<0>().

◆ second

template<typename T1 , typename T2 , typename T3 >
T2 CGAL::Triple< T1, T2, T3 >::second

second element.

Please access it using get<1>().

◆ third

template<typename T1 , typename T2 , typename T3 >
T3 CGAL::Triple< T1, T2, T3 >::third

third element.

Please access it using get<2>().