Guest User

Untitled

a guest
Jun 8th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.13 KB | None | 0 0
  1. interface Collection<E> {
  2.     public boolean containsAll(Collection<?> c);
  3.     public boolean addAll(Collection<? extends E> c);
  4. }
Add Comment
Please, Sign In to add comment