libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
T * csdbg::stack< 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 249 of file stack.hpp.

250 {
251  return peek(i);
252 }
virtual T * peek(u32) const
Get the node data pointer at a stack offset.
Definition: stack.hpp:335