STL namespace. More...
Functions | |
template<typename T > | |
const T & | begin (const pair< T, T > &p) |
template<typename T > | |
const T & | end (const pair< T, T > &p) |
Quaternion | pow (const Quaternion &q, double p) |
template<typename T > | |
bool | serialization (storage::VVEStorage &store, list< T > &vec) |
template<typename T , typename Sort > | |
bool | serialization (storage::VVEStorage &store, set< T, Sort > &vec) |
template<typename T , typename Sort > | |
bool | serialization (storage::VVEStorage &store, multiset< T, Sort > &vec) |
template<typename T > | |
bool | serialization (storage::VVEStorage &store, vector< T > &vec) |
template<GRAPH_TEMPLATE > | |
void | swap (graph::VVGraph< GRAPH_ARGS > &g1, graph::VVGraph< GRAPH_ARGS > &g2) |
Specialize the swap algorithm for two graphs. | |
template<BIGRAPH_TEMPLATE > | |
void | swap (graph::VVBiGraph< BIGRAPH_ARGS > &g1, graph::VVBiGraph< BIGRAPH_ARGS > &g2) |
STL namespace.
void std::swap | ( | graph::VVGraph< GRAPH_ARGS > & | g1, | |
graph::VVGraph< GRAPH_ARGS > & | g2 | |||
) | [inline] |
Specialize the swap algorithm for two graphs.
Definition at line 2910 of file vvgraph.h.
References graph::VVGraph< VertexContent, EdgeContent, compact >::swap().
02911 { 02912 g1.swap(g2); 02913 }