public bool TryPop(out T item)
 {
     return(UnsafeStack.TryPop <T>(m_inner, out item));
 }