My Project
|
#include <iostream>
Go to the source code of this file.
Data Structures | |
class | ListItem< T > |
class | List< T > |
class | ListIterator< T > |
Macros | |
#define | OSTREAM std::ostream |
Functions | |
template<class T > | |
OSTREAM & | operator<< (OSTREAM &, const List< T > &) |
template<class T > | |
int | operator== (const List< T > &, const List< T > &) |
template<class T > | |
List< T > | Union (const List< T > &, const List< T > &) |
template<class T > | |
List< T > | Difference (const List< T > &, const List< T > &) |
template<class T > | |
List< T > | Union (const List< T > &, const List< T > &, int(*ecmpf)(const T &, const T &)) |
template<class T > | |
List< T > | Difference (const List< T > &, const List< T > &, int(*ecmpf)(const T &, const T &)) |
template<class T > | |
List< T > | Difference (const List< T > &F, const T &G) |
template<class T > | |
List< T > | Difference (const List< T > &F, const T &G, int(*ecmpf)(const T &, const T &)) |
template<class T > | |
List< T > | Union (const List< T > &, const List< T > &, int(*cmpf)(const T &, const T &), void(*insf)(T &, const T &)) |
template<class T > | |
T | prod (const List< T > &) |
template<class T > | |
bool | find (const List< T > &, const T &t) |
template<class T > | |
bool | find (const List< T > &F, const T &t, int(*ecmpf)(const T &, const T &)) |
#define OSTREAM std::ostream |
Definition at line 9 of file ftmpl_list.h.
Definition at line 622 of file ftmpl_list.cc.
List< T > Difference | ( | const List< T > & | F, |
const List< T > & | G, | ||
int(*)(const T &, const T &) | ecmpf | ||
) |
Definition at line 641 of file ftmpl_list.cc.
Definition at line 700 of file ftmpl_list.cc.
bool find | ( | const List< T > & | F, |
const T & | t, | ||
int(*)(const T &, const T &) | ecmpf | ||
) |
Definition at line 714 of file ftmpl_list.cc.
Definition at line 555 of file ftmpl_list.cc.
Definition at line 176 of file ftmpl_list.cc.
Definition at line 690 of file ftmpl_list.cc.
Definition at line 563 of file ftmpl_list.cc.
List< T > Union | ( | const List< T > & | F, |
const List< T > & | G, | ||
int(*)(const T &, const T &) | cmpf, | ||
void(*)(T &, const T &) | insf | ||
) |
Definition at line 587 of file ftmpl_list.cc.