libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
T * csdbg::chain< T >::operator[] ( u32  i) const
inlinevirtual

Subscript operator.

Parameters
[in]ithe index
Returns
the i-th node data pointer
Exceptions
csdbg::exception

Definition at line 346 of file chain.hpp.

347 {
348  return at(i);
349 }
virtual T * at(u32) const
Get the node data pointer at a chain offset.
Definition: chain.hpp:440