Go to the source code of this file.
Definition at line 457 of file Tuple.h.
A structure used to represent element faces.
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const Two_tuple< T > & |
s |
|
) |
| |
Definition at line 225 of file Tuple.h.
References s.
227 return s.
print(os,
"Two_tuple");
std::ostream & print(std::ostream &os, const char *s) const
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const Three_tuple< T > & |
s |
|
) |
| |
Definition at line 336 of file Tuple.h.
References s.
338 return s.
print(os,
"Three_tuple");
std::ostream & print(std::ostream &os, const char *s) const
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const Four_tuple< T > & |
s |
|
) |
| |
Definition at line 444 of file Tuple.h.
References s.
446 return s.
print(os,
"Four_tuple");
std::ostream & print(std::ostream &os, const char *s) const
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
Two_tuple< T > & |
s |
|
) |
| |
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
Three_tuple< T > & |
s |
|
) |
| |
Definition at line 342 of file Tuple.h.
344 is >> s[0] >> s[1] >> s[2];
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
Four_tuple< T > & |
s |
|
) |
| |
Definition at line 450 of file Tuple.h.
452 is >> s[0] >> s[1] >> s[2] >> s[3];