| 
    VTK
    9.3.0
    
   | 
 
#include "vtkIOStream.h"#include "vtkSystemIncludes.h"#include <algorithm>#include <array>#include <cassert>#include <cmath>#include <cstdlib>Go to the source code of this file.
Classes | |
| class | vtkTuple< T, Size > | 
| templated base type for containers of constant size.  More... | |
Functions | |
| template<typename A , int Size> | |
| bool | operator!= (const vtkTuple< A, Size > &t1, const vtkTuple< A, Size > &t2) | 
| Inequality for vector type.   | |
| template<typename A , int Size> | |
| ostream & | operator<< (ostream &out, const vtkTuple< A, Size > &t) | 
| Output the contents of a tuple, mainly useful for debugging.   | |
| template<int Size> | |
| ostream & | operator<< (ostream &out, const vtkTuple< unsigned char, Size > &t) | 
| Output the contents of a tuple, mainly useful for debugging.   | |
| template<typename A , int Size> | |
| bool | operator== (const vtkTuple< A, Size > &t1, const vtkTuple< A, Size > &t2) | 
| Equality operator performs an equality check on each component.   | |
| ostream & operator<< | ( | ostream & | out, | 
| const vtkTuple< A, Size > & | t | ||
| ) | 
Output the contents of a tuple, mainly useful for debugging.
Definition at line 152 of file vtkTuple.h.
| ostream & operator<< | ( | ostream & | out, | 
| const vtkTuple< unsigned char, Size > & | t | ||
| ) | 
Output the contents of a tuple, mainly useful for debugging.
Definition at line 173 of file vtkTuple.h.
| bool operator== | ( | const vtkTuple< A, Size > & | t1, | 
| const vtkTuple< A, Size > & | t2 | ||
| ) | 
Equality operator performs an equality check on each component.
Definition at line 199 of file vtkTuple.h.
| bool operator!= | ( | const vtkTuple< A, Size > & | t1, | 
| const vtkTuple< A, Size > & | t2 | ||
| ) | 
Inequality for vector type.
Definition at line 216 of file vtkTuple.h.