libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
chain< T > & csdbg::chain< T >::remove ( u32  i)
inlinevirtual

Dispose the node (and its data) at a chain offset.

Parameters
[in]ithe offset
Returns
*this
Exceptions
csdbg::exception

Definition at line 400 of file chain.hpp.

401 {
402  delete detach_node(i);
403  return *this;
404 }
virtual node< T > * detach_node(u32)
Detach the node at a chain offset.
Definition: chain.hpp:167