Advertisement
PGSStas

Untitled

Nov 13th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. list.PushBack(1);
  2. list.PopBack();
  3. list.IsEmpty();
  4. list.Back();
  5. list.Front();
  6. list.Size();
  7. list.ToVector();
  8. list.PushBack(1);
  9. list.Find(1);
  10. list.FindAll(1);
  11. list.InsertAfter(list.Front(), 2);
  12. list.InsertBefore(list.Front(), -1);
  13. list.Erase(list.Front());
  14. list[1];
  15. EXPECT_FALSE(list.IsEmpty());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement