예제 #1
0
 bool empty() const {      // return whether the stack is empty
     return elems.empty();
 }
예제 #2
0
 inline bool
 isnil (const CONT& container)
 {
   return container.empty();
 }
예제 #3
0
파일: Stack.hpp 프로젝트: OJ-China/language
 bool empty() const
 {
     return elems.empty();
 }