Guest User

Untitled

a guest
Jun 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. bool empty() const
  2. {return (size() == 0); }
  3.  
  4. return (size() == 0);
  5.  
  6. Operation: empty()
  7. Return_type: convertible to bool
  8. Semantics: equivalent to size()==0
  9. Complexity: constant
  10.  
  11. bool
  12. empty() const
  13. { return begin() == end(); }
Add Comment
Please, Sign In to add comment