libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
node< T > * csdbg::node< T >::operator^ ( const node< T > &  prev) const
inlineprotectedvirtual

Get the next node (XOR linking)

Parameters
[in]prevthe previous node, from either direction
Returns
the next node

Definition at line 249 of file node.hpp.

250 {
251  return link(&prev);
252 }
virtual node * link(const node *=NULL) const
Get the next node (using direct or XOR linking)
Definition: node.hpp:156