CGAL 5.1 - Geometric Object Generators
CombinationElement Class Reference

#include <Concepts/CombinationElement.h>

Definition

A CombinationElement can be used as template parameter for the class Combination_enumerator<CombinationElement>.

Has Models:

Any integer type (char, short, int, long, etc.)

Pointers

Random access iterators

See also
Combination_enumerator<CombinationElement>

Creation

 CombinationElement (const CombinationElement &e2)
 Copy constructor. More...
 

Types

typedef unspecified_type value_type
 the type of point being generated. More...
 

Operations

void operator++ ()
 Incrementation. More...
 
void operator-- ()
 Decrementation. More...
 
bool operator< (const CombinationElement &e2)
 Total order comparison. More...
 
bool operator== (const CombinationElement &e2)
 Equality test. More...
 
CombinationElement operator+ (int i)
 Equivalent to calling ++(*this) i times if i is positive. More...
 
int operator- (const CombinationElement &e2)
 Equivalent to calling ++(*this) i times if i is positive. More...
 

Member Typedef Documentation

◆ value_type

typedef unspecified_type CombinationElement::value_type

the type of point being generated.

Constructor & Destructor Documentation

◆ CombinationElement()

CombinationElement::CombinationElement ( const CombinationElement e2)

Copy constructor.

Member Function Documentation

◆ operator+()

CombinationElement CombinationElement::operator+ ( int  i)

Equivalent to calling ++(*this) i times if i is positive.

Equivalent to calling --(*this) -i times if i is negative.

◆ operator++()

void CombinationElement::operator++ ( )

Incrementation.

◆ operator-()

int CombinationElement::operator- ( const CombinationElement e2)

Equivalent to calling ++(*this) i times if i is positive.

Equivalent to calling –(*this) -i times if i is negative.

◆ operator--()

void CombinationElement::operator-- ( )

Decrementation.

◆ operator<()

bool CombinationElement::operator< ( const CombinationElement e2)

Total order comparison.

◆ operator==()

bool CombinationElement::operator== ( const CombinationElement e2)

Equality test.